我在其他目录中有一个 php 文件,我想使用其中的一些数据,但是当我require_once()该文件时,我看到此错误:
致命错误:require_once():无法在第20行的E:\ wamp \ www \ newmvc \ index.php中打开所需的'/ Controller / UserController'(include_path ='.; C:\ php \ pear')。< / p>
newmvc是我的根 而且我确定没有拼写错误,而且我有文件。
$Controller="user";
$param=array();
$className=ucfirst($Controller)."Controller";
$controllerfilepath="/Controller/".$className;
require_once "$controllerfilepath";
答案 0 :(得分:0)
我想您忘记为类文件名添加扩展名 import pandas as pd
def read_pickle_file(file):
pickle_data = pd.read_pickle(file)
return pickle_data
:
require("reticulate")
source_python("pickle_reader.py")
pickle_data <- read_pickle_file("C:/tsa/dataset.pickle")