本文整理匯總了PHP中ext_Result::add_message方法的典型用法代碼示例。如果您正苦於以下問題:PHP ext_Result::add_message方法的具體用法?PHP ext_Result::add_message怎麽用?PHP ext_Result::add_message使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類ext_Result
的用法示例。
在下文中一共展示了ext_Result::add_message方法的1個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。
示例1: chmod_recursive
function chmod_recursive($item, $mode)
{
// chmod file / dir
$ok = true;
if (@is_link($item) || @is_file($item)) {
$ok = @chmod($item, $mode);
if ($ok) {
ext_Result::add_message($GLOBALS['messages']['permchange'] . ' ' . $new_item);
} else {
ext_Result::add_error($GLOBALS['error_msg']['permchange'] . ' ' . $new_item);
}
} elseif (@is_dir($item)) {
if (($handle = @opendir($item)) === false) {
ext_Result::add_error(basename($item) . ": " . $GLOBALS["error_msg"]["opendir"]);
return false;
}
while (($file = readdir($handle)) !== false) {
if ($file == ".." || $file == ".") {
continue;
}
$new_item = $item . "/" . $file;
if (!@file_exists($new_item)) {
ext_Result::add_error(basename($item) . ": " . $GLOBALS["error_msg"]["readdir"]);
continue;
}
//if(!get_show_item($item, $new_item)) continue;
if (@is_dir($new_item)) {
$ok = chmod_recursive($new_item, $mode);
} else {
$ok = @chmod($new_item, $mode);
if ($ok) {
ext_Result::add_message($GLOBALS['messages']['permchange'] . ' ' . $new_item);
} else {
ext_Result::add_error($GLOBALS['error_msg']['permchange'] . ' ' . $new_item);
}
}
}
closedir($handle);
if (@is_dir($item)) {
$bin = decbin($mode);
// when we chmod a directory we must care for the permissions
// to prevent that the directory becomes not readable (when the "execute bits" are removed)
$bin = substr_replace($bin, '1', 2, 1);
// set 1st x bit to 1
$bin = substr_replace($bin, '1', 5, 1);
// set 2nd x bit to 1
$bin = substr_replace($bin, '1', 8, 1);
// set 3rd x bit to 1
$mode = bindec($bin);
}
$ok = @chmod($item, $mode);
if ($ok) {
ext_Result::add_message($GLOBALS['messages']['permchange'] . ' ' . $item);
} else {
ext_Result::add_error($GLOBALS['error_msg']['permchange'] . ' ' . $item);
}
}
return $ok;
}