我使用shell_exec
到我的服務器上執行命令,並顯示回聲結果。選擇並顯示服務器文件
現在,我要選擇和顯示顯示的文件。我怎樣才能做到這一點?從代碼
<body>
<form method="get" action="<?php echo $_SERVER["PHP_SELF"] ?>">
<input type="submit" class="reset_button"/>
<p><b>Search</b></p>
<?php
<input type='text' name='idtest' value='' />
<input type='submit' value='consultar' />
?>
<?php
$consulta=$_GET[idtest];
$salida = shell_exec('find/-iname *'.$consulta.'*|sort');
echo "<pre>$salida</pre>";
?>
</body>
結果:
text1.txt
text2.txt
text3.txt
text4.txt
檢查文檔:http://php.net/manual/en/function.fread.php – Hackerman
你想顯示文件的內容或文件名列表? –
該文件的內容。該列表已顯示。 – Drennos