symlink() 函數創建一個符號鏈接。成功時返回 TRUE,失敗時返回 FALSE。
用法
symlink( target, link)
參數
target −要創建的鏈接的目標。
link −鏈接的名稱。
返回
symlink() 函數在成功時返回 TRUE,在失敗時返回 FALSE。
示例
<?php
$target = new.php';
$mylink = new.html';
$res = symlink($target, $mylink);
if ($result) {
echo ("Symlink created!");
} else {
echo ("Symlink can’t be created!");
}
?>
輸出
Symlink created!
相關用法
- PHP symlink( )用法及代碼示例
- PHP string rtrim()用法及代碼示例
- PHP strsrt()用法及代碼示例
- PHP sqrt()用法及代碼示例
- PHP stats_dens_pmf_binomial()用法及代碼示例
- PHP string printf()用法及代碼示例
- PHP string ord()用法及代碼示例
- PHP string join()用法及代碼示例
- PHP Spreadsheet_Excel_Writer setAlign()用法及代碼示例
- PHP strtolower()用法及代碼示例
- PHP Spreadsheet_Excel_Writer setScript()用法及代碼示例
- PHP str_split()用法及代碼示例
- PHP stream_get_filters()用法及代碼示例
- PHP Spreadsheet_Excel_Writer setOutLine()用法及代碼示例
- PHP strchr()用法及代碼示例
- PHP substr_compare()用法及代碼示例
- PHP session_gc()用法及代碼示例
- PHP stats_cdf_chisquare()用法及代碼示例
- PHP string sha1()用法及代碼示例
- PHP stats_cdf_t()用法及代碼示例
注:本文由純淨天空篩選整理自Karthikeya Boyini大神的英文原創作品 symlink() function in PHP。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。