PHP 快速導覽 - 核心延伸函數 程式執行相關 escapeshellarg()

內建函數 (function) escapeshellarg() 將預備用作系統指令的字串加上單引號

函數說明
string escapeshellarg(string $arg)$arg 系統指令。


參數 (parameter) 為系統指令,須注意回傳的是字串。


舉例如下
<?php
$dir = "./example";
print_r($dir) ;
echo "\n";
print_r(escapeshellarg($dir));
echo "\n";

/* 《程式語言教學誌》的範例程式
    http://pydoing.blogspot.com/
    檔名:program01.php
    功能:示範 PHP 程式 
    作者:張凱慶
    時間:西元 2013 年 2 月 */
?>


執行結果如下



中英文術語對照
函數function
參數parameter


您可以繼續參考
程式執行相關


相關目錄
回 PHP 快速導覽
回 PHP 教材
回首頁


參考資料
http://www.php.net/manual/en/function.escapeshellarg.php

沒有留言: