PHP require_once' ...........&#39 ;;

时间:2017-11-04 08:54:11

标签: php

我正在调用函数require_once '../autoload.php';,但我收到错误

Warning: require_once(../autoload.php): failed to open stream: No such file or directory in C:\xampp\htdocs\Api\Autotask\vendor\test.php on line 2
Fatal error: require_once(): Failed opening required '../autoload.php' (include_path='C:\xampp\php\PEAR') in C:\xampp\htdocs\Api\Autotask\vendor\test.php on line 2

我做错了什么?

Screenshot

1 个答案:

答案 0 :(得分:-1)

为避免此类问题,为了获得最佳实践,我建议使用根路径:

require_once($root/Api/Autotask/vendor/autoload.php)

上面的代码将在服务器上为$ root分配你的realpath。

之后根据您的localhost / webserver root使用require / include等:

require_once($root/php/nice_folder/autoload.php)

例如,如果您的文件位于websiterootfolder / php / nice_folder中 您的代码将是:

x = [0.0000, 0.0125, 0.0250, 0.0500, 0.0750, 0.1000, 0.1500, 0.2000, 0.3000, 0.4000, 0.5000, 0.6000, 0.7000, 0.8000, 0.9000, 0.9500, 1.000, 0.0000, 0.0125, 0.0250, 0.0500, 0.0750, 0.1000, 0.1500, 0.2000, 0.3000, 0.4000, 0.5000, 0.6000, 0.7000, 0.8000, 0.9000, 0.9500, 1.000]
z = [0.0000, 0.0221, 0.0336, 0.0518, 0.0662, 0.0782, 0.0965, 0.1090, 0.1202, 0.1178, 0.1055, 0.0868, 0.0649, 0.0421, 0.0202, 0.0105, 0.0000, 0.0000, -0.0151, -0.0186, -0.0185 , -0.0150, -0.0113, -0.0065, -0.0026, -0.0007, -0.0011, -0.0057, -0.0114, -0.0156, -0.0165, -0.0127, -0.0087, 0.0000]

for i, j in (range(x), range(z)):
    """incluir cada valor con un indice correspondiente a la matriz"""
    l_hess=np.sqrt(i^2+j^2)
    print(l_hess)
    delta = np.arctan2(j/i)
    print(delta)

通过使用此练习,您可以包含任何位置和任何您想要的方式的任何文件,无论是否动态