编辑:autoload-php7.php
<?php /* This file should only ever be loaded on PHP 7+ */ if (PHP_VERSION_ID < 70000) { return; } spl_autoload_register(function ($class) { $namespace = 'ParagonIE_Sodium_'; // Does the class use the namespace prefix? $len = strlen($namespace); if (strncmp($namespace, $class, $len) !== 0) { // no, move to the next registered autoloader return false; } // Get the relative class name $relative_class = substr($class, $len); // Replace the namespace prefix with the base directory, replace namespace // separators with directory separators in the relative class name, append // with .php $file = dirname(__FILE__) . '/src/' . str_replace('_', '/', $relative_class) . '.php'; // if the file exists, require it if (file_exists($file)) { require_once $file; return true; } return false; });
保存文件
位置:
home
/
fembzvrs
/
zimeza.com
/
wp-includes
/
sodium_compat
批量上传
创建
创建
批量权限
批量删除
名称
权限
大小
修改时间
操作
↑ 返回上级
-
-
-
-
lib
drwxr-xr-x
-
2026-01-29 20:50
权限
删除
重命名
namespaced
drwxr-xr-x
-
2026-01-29 20:49
权限
删除
重命名
src
drwxr-xr-x
-
2026-01-29 20:51
权限
删除
重命名
LICENSE
-rw-r--r--
860 B
2023-04-30 18:08
编辑
下载
权限
删除
重命名
autoload-php7.php
-rw-r--r--
890 B
2020-09-27 08:46
编辑
下载
权限
删除
重命名
autoload.php
-rw-r--r--
3.04 KB
2024-07-18 17:00
编辑
下载
权限
删除
重命名
composer.json
-rw-r--r--
1.57 KB
2021-05-25 17:55
编辑
下载
权限
删除
重命名