출력에는 다음 결과가 표시됩니다. VolumeindriveCisWindows10VolumeSerialNumberis540D-CE99Directoryof"/> 출력에는 다음 결과가 표시됩니다. VolumeindriveCisWindows10VolumeSerialNumberis540D-CE99Directoryof">
은 PHP의 실행 연산자를 정의합니다. 백틱(``)으로 묶인 문자열은 DOS 명령(UNIX/Linux의 쉘 명령)으로 처리되어 해당 출력이 반환됩니다. 이 연산자는 PHP의 shell_exec() 함수와 유사하게 작동합니다.
다음 코드는 DIR 명령을 실행하고 결과를 문자열로 반환합니다.
<?php $list=`dir *.php`; echo "$list"; ?>
은 다음 결과를 보여줍니다
Volume in drive C is Windows 10 Volume Serial Number is 540D-CE99 Directory of C:\xampp\php 01/27/2016 05:32 PM 18,869 CompatInfo.php 07/08/2020 06:40 PM 64 test.php 07/11/2020 02:13 PM 48 testscript.php 03/30/2013 05:59 PM 1,447 webdriver-test-example.php 4 File(s) 20,428 bytes 0 Dir(s) 178,002,157,568 bytes free
이것은 역따옴표 연산자의 또 다른 예입니다. 유형 명령
<?php $list='type testscript.php'; echo "$list"; ?>
을 실행하면 다음 결과
type testscript.php가 표시됩니다.
위 내용은 PHP 실행 연산자의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!