我想使用a solution by @toscho 显示和旋转一些引号。未更改的代码工作得很好,但是如果我替换
protected function get_rand()
{
return rand( 1, 1000 );
}
使用(来自
here)
protected function get_rand()
{
$array = file("wp-content/plugins/quotes-rotator/quotes.txt");
$r = rand(0,count($array)-1);
return $array[rand(0,count($array)-1)];
}
代码仅在第一页加载时运行良好,但当我按下“New”(新建)按钮显示新报价时,系统输出错误:
警告:文件(wp-content/plugins/quotes-rotator/quotes.txt):无法打开流:在/var/www/…中没有这样的文件或目录/public\\u html/wp-content/plugins/quotes-rotator/ajax-shortcode演示。php在线106
What is wrong here?