我希望将文件引用作为函数参数传递。我不确定这在php中是如何工作的,但是在js中,只要变量是全局定义的,它似乎就可以了。显然这不是js,但我不确定如何改变我的代码来解决这个问题。
在我的文件开头,我定义了类似的内容:
$myfileref = fopen('../some/path.txt', 'w');
function writeHeader($fileref){
fwrite($fileref, 'some text here\n');
}
然后我想把它称为:
writeHeader($myfileref);
我做错了什么?
这是我的代码:
<?php
$outfile = fopen('outfile.txt', 'w');
$path = '.';
$one_html = fopen('../write_dir/one.html', 'w');
if(!is_resource($one_html)){
die("fopen failed");
}
$two_html = fopen('../write_dir/two.html', 'w');
if(!is_resource($two_html)){
die("fopen failed");
}
$three_html = fopen('../write_dir/three.html', 'w');
if(!is_resource($three_html)){
die("fopen failed");
}
function searchFiles($dir){
$outpath = getcwd() . '/../write_dir/';
$in_dir = 'none';
$f_one = $f_two = $f_three = false;
$thisdir = new RecursiveDirectoryIterator($dir, RecursiveDirectoryIterator::SKIP_DOTS);
$files = new RecursiveIteratorIterator($thisdir, RecursiveIteratorIterator::SELF_FIRST);
global $one_html, $two_html, $three_html;
foreach($files as $object){
if($object->isDir()){
if(strpos($object->getPathname(), 'one') == true){
if(!$f_one){
echo "in one \n";
fileHeader($one_html);
$f_one = true;
}
$in_dir = 'one';
}
else if(strpos($object->getPathname(), 'two') == true){
if(!$f_two){
echo "in two \n";
fileHeader($two_html);
$f_two = true;
}
$in_dir = 'two';
}else if(strpos($object->getPathname(), 'three') == true){
if(!$f_three){
echo "in three \n";
fileHeader($three_html);
$f_three = true;
}
}
}
}
}
function fileHeader($fileref){
fwrite($fileref, "<table border=\"1\">\n");
fwrite($fileref, '<tr bgcolor=\"#CCCCCC\">\n');
fwrite($fileref, '<th>name</th>');
fwrite($fileref, '<th>description</th>');
fwrite($fileref, '<th>authors</th>');
fwrite($fileref, '<th>version</th>');
fwrite($fileref, '</tr>');
}
searchFiles('.');
?>
答案 0 :(得分:5)
将文件描述符(资源)传递给PHP中的函数没有任何魔力。它们将作为常规参数处理。
以下示例将按原样运行。 (和你的一样)
<?php
// define your function
function write($fd, $message) {
fwrite($fd, $message);
}
// open a file
$fd = fopen('/tmp/a.txt', 'w');
// make sure that opening succeeded
if(!is_resource($fd)) {
die('fopen failed');
}
// write to the file
write($fd, 'hello world');
// close the file
fclose($fd);
更新:
您错过了将这些文件描述符作为参数传递给函数searchFiles
。因此,它们不在searchFiles()
的范围内。请参阅手册页Variable Scope。
将函数声明更改为:
function searchFiles($dir, $one_html, $two_html, $three_html){
在调用它时将这些值传递给函数:
searchFiles('.', $one_html, $two_html, $three_html);
我希望你明白你做错了什么。
答案 1 :(得分:2)
我真的没有看到上面的代码有什么问题...我的猜测是
writeHeader($myfileref); <-- -you are calling this
$myfileref = fopen('log.txt', 'w'); <-- -- Before tHis
function writeHeader($fileref){
fwrite($fileref, 'some text here\n');
}
切换位置,它应该可以正常工作,或者只使用SplFileObject
,easily force type to your function
示例:
$file = new SplFileObject("log.txt", "w");
if (! $file->isWritable())
throw new Exception("I can't write to this");
writeHeader($file);
function writeHeader(SplFileObject $file) {
$file->fwrite("The 1st Header\r\n");
$file->fwrite("The 2nd Header\r\n");
$file->fwrite("The 3rd Header\r\n");
}
答案 2 :(得分:0)
PHP会为大多数事情传递值,因此您需要强制传递引用:
function writeHeader(&$myfileref) {
^---
...
}
这样,writeHeader()中的myfileref是对函数外部“真实”文件句柄的引用。