當前位置: 首頁>>代碼示例>>PHP>>正文


PHP ext_Result::add_message方法代碼示例

本文整理匯總了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;
}
開發者ID:kosmosby,項目名稱:medicine-prof,代碼行數:59,代碼來源:functions.php


注:本文中的ext_Result::add_message方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。