我们可以启用和禁用cluser吗?

时间:2015-08-28 04:17:15

标签: php wordpress moodle

如何禁用群集?

我的文件位置显示 / NAS / WP / WWW /簇40926 / securityorg / test_moodle
 这是代码

$dir = dirname(__FILE__);
echo "Full path to this dir: " . $dir;

输出:

Full path to this dir: /nas/wp/www/cluster-40926/securityorg/test_moodle

如何从路径目录中删除cluster-40926。

1 个答案:

答案 0 :(得分:0)

如果你真的想要删除它,你可以使用preg_replace(),因为它总是一样的,很容易找到,你可以只用它替换它!

preg_replace($patterns, $replacements, $string);

$new_dir = preg_replace('-40926', '' , $dir);