本文整理汇总了PHP中core::get_path_fixed方法的典型用法代码示例。如果您正苦于以下问题:PHP core::get_path_fixed方法的具体用法?PHP core::get_path_fixed怎么用?PHP core::get_path_fixed使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类core
的用法示例。
在下文中一共展示了core::get_path_fixed方法的7个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: test_exception
public function test_exception()
{
try {
new test_force_exception();
} catch (core_exception $exception) {
}
$this->test(1, $exception);
$this->test(2, $exception->get_message());
$this->test(3, $exception->get_code());
$this->test(4, core::get_path_fixed($exception->get_file()));
$this->test(5, $exception->get_line() > 0);
}
示例2: __construct
public function __construct($view_path, $view_args, $cancel_print)
{
// Corrige o path solicitado
$this->_proposed_view = core::get_path_fixed($view_path);
// Se o path estiver vazio é invalidado
if (empty($this->_proposed_view)) {
$this->_status = self::STATUS_VIEW_IS_INVALID | self::STATUS_VIEW_IS_EMPTY | self::STATUS_VIEW_NOT_FOUND;
return;
}
// Se o path for inseguro ou mesmo inválido
if (preg_match(CORE_VALID_PATH, $this->_proposed_view) === 0) {
$this->_status = self::STATUS_VIEW_IS_INVALID | self::STATUS_VIEW_IS_INSECURE | self::STATUS_VIEW_NOT_FOUND;
return;
}
// Remove os protetores
$this->_proposed_view = str_replace(array('[', ']'), null, $this->_proposed_view);
// Busca pelo caminho da view
$view_path_data = core::get_modular_parts(explode('/', $this->_proposed_view), array('modular_path_auto' => true, 'path_repeat' => false, 'path_extension' => '/views', 'make_fullpath' => true));
// Armazena a informação modular encontrada
$this->_modular_data = $view_path_data;
// Se a busca retornar restos invalida
if (isset($view_path_data->remains)) {
$this->_status = self::STATUS_VIEW_IS_INVALID | self::STATUS_VIEW_HAS_REMAINS | self::STATUS_VIEW_NOT_FOUND;
return;
}
// Define o fullpath proposto
$this->_path = $view_path_data->fullpath;
// Se o arquivo proposto não existir é inválido
if (is_file($this->_path) === false) {
$this->_status = self::STATUS_VIEW_IS_INVALID | self::STATUS_VIEW_NOT_FOUND;
return;
}
// Se nenhuma invalidação ocorreu, o arquivo é finalmente chamado
$this->_load_view($view_args);
// Por fim, imprime o conteúdo, se for necessário
$this->_result_printed = !$cancel_print;
if ($cancel_print === false) {
echo $this->_result_contents;
}
}
示例3: set_time_limit
set_time_limit(15);
xdebug_start_code_coverage(XDEBUG_CC_UNUSED | XDEBUG_CC_DEAD_CODE);
}
// Obtém e imprime as classes diretamente no modelo
$result = '';
$model_attrs = array('lang' => lang('models'), 'page_lang' => $lang);
foreach (call('__class::get_all') as $value) {
$model_attrs['class'] = (object) $value;
$result .= load('models/class', $model_attrs, true);
}
if ($xdebug_enabled === true && isset($_GET['coverage'])) {
$coverage = xdebug_get_code_coverage();
ksort($coverage);
$coverage_lang = lang('coverage');
foreach ($coverage as $file => $lines) {
$filename = core::get_path_fixed(core::get_path_clipped($file));
if (substr($filename, 0, 5) !== 'core/' || substr($file, -4) !== '.php') {
continue;
}
load('coverage/class', array('lang' => $coverage_lang, 'types' => $model_attrs['lang'], 'name' => $filename, 'file' => $file, 'lines' => $lines));
}
}
echo $result;
?>
</div>
<br />
</div>
</div>
<div id="black-background" class="black-background"></div>
<div id="modal-content" class="modal-content">
示例4: prepare_result
public static function prepare_result($data)
{
if (is_string($data)) {
// Remover informações sobre o URL e o path local
// Isto permite validar melhor o servidor e o localhost
$replace_data = array(core::get_baseurl(false) => 'http://.../core/', core::get_path_fixed(CORE_INDEX) => './core');
$data = str_replace(array_keys($replace_data), array_values($replace_data), $data);
return array('string', $data);
} else {
if (is_bool($data)) {
return array('boolean', $data);
} else {
if (is_int($data)) {
return array('number', $data);
} else {
if (is_float($data)) {
return array('float', $data);
} else {
if (is_array($data) || is_a($data, 'stdClass')) {
$data_values = (array) $data;
$object_type = is_array($data) ? 'array' : 'stdClass';
foreach ($data_values as &$item) {
$item = self::prepare_result($item);
}
return array('object', $data_values, $object_type);
} else {
if (is_object($data)) {
$data_values = array();
if (method_exists($data, '__toString') && !$data instanceof exception) {
$data_values['__toString()'] = array('string', $data->__toString());
}
$object_data = (array) $data;
if ($data instanceof exception) {
$object_data["*file"] = core::get_path_fixed($object_data["*file"]);
unset($object_data['xdebug_message']);
unset($object_data["Exceptionstring"]);
unset($object_data["*line"]);
unset($object_data["Exceptiontrace"]);
unset($object_data["Exceptionprevious"]);
// PHP 5.3
if (substr($object_data["*code"], 0, 2) === 'Cx') {
$message_lang = lang('/core/errors/err' . substr($object_data["*code"], 2), array('en', 'pt-br'));
$object_data["*message"] = $message_lang->get_value('error_message', $object_data["core_exception_error"]->get_message_args());
}
unset($object_data["core_exception_error"]);
} else {
if ($data instanceof core_language) {
unset($object_data["core_language_lang_dir"]);
unset($object_data["core_language_lang_order"]);
} else {
if ($data instanceof core_error) {
unset($object_data["core_error_globals"]);
unset($object_data["core_error_backtrace"]);
} else {
if ($data instanceof mysqli) {
static $mysqli_keys = array('affected_rows', 'connect_errno', 'connect_error', 'errno', 'error', 'field_count', 'info', 'insert_id', 'sqlstate', 'warning_count');
$object_data = array();
foreach ($mysqli_keys as $key) {
$object_data[$key] = $data->{$key};
}
} else {
if ($data instanceof mysqli_result) {
static $mysqli_result_keys = array('current_field', 'field_count', 'lengths', 'num_rows', 'type');
$object_data = array();
foreach ($mysqli_result_keys as $key) {
$object_data[$key] = $data->{$key};
}
} else {
if ($data instanceof core_database) {
unset($object_data["core_database_connection_string"], $object_data["core_database_connection_array"]);
} else {
if ($data instanceof core_model) {
unset($object_data["core_model_keys"]);
} else {
if ($data instanceof core_model_row) {
unset($object_data["core_model_row_model"]);
unset($object_data["core_model_row_from"]);
unset($object_data["core_model_row_conn"]);
if (isset($object_data["core_model_row_loader_method"][0][0])) {
$object_data["core_model_row_loader_method"][0][0] = null;
}
} else {
if ($data instanceof core_model_results) {
unset($object_data["core_model_results_model"]);
unset($object_data["core_model_results_from"]);
}
}
}
}
}
}
}
}
}
foreach ($object_data as $key => $value) {
$key = explode("", $key);
$key = isset($key[2]) ? $key[2] : $key[0];
$data_values[$key] = $data === $value ? array('recursive', '$this') : self::prepare_result($value);
}
ksort($data_values);
//.........这里部分代码省略.........
示例5: _create_controller
public static function _create_controller($modular_path_data, $cancel_print = false, $auto_execute = true, $can_detect_caller_path = false)
{
// Armazena o método padrão, ele será usado em vários momentos
$default_method = core_config::get_config(null, 'route_default_method');
// Define algumas informações principais
$modular_path = new stdclass();
$modular_path->url = (isset($_SERVER['HTTPS']) ? 'https' : 'http') . "://{$_SERVER['SERVER_NAME']}" . dirname($_SERVER['SCRIPT_NAME']) . '/';
// Se o path modular for false, então usa totalmente o padrão
// Ex: http://127.0.0.1/
if ($modular_path_data === null || $modular_path_data === false) {
$modular_path->modular = (array) core_config::get_config(null, 'route_default_modular');
$modular_path->path = (array) core_config::get_config(null, 'route_default_controller');
$modular_path->method = $default_method;
$modular_path->class = core::get_joined_class($modular_path, 'controller');
} else {
// Se puder detectar o path do caller (somente execute())
if ($can_detect_caller_path === true && isset($modular_path_data[0]) === true) {
// Se o primeiro caractere for um $, indica rota estrita inline
if ($modular_path_data[0] === '$') {
$strict_route = true;
$modular_path_data = substr($modular_path_data, 1);
}
// Se o modular começar por / apenas remove a informação
// Caso contrário, deverá preencher com o path do módulo de chamada
if ($modular_path_data[0] === '/') {
$modular_path_data = substr($modular_path_data, 1);
} else {
$modular_path_data = join('/', core::get_caller_module_path()) . '/' . $modular_path_data;
}
}
// Se não definir o modo estrito de rota, obtém a informação
if (!isset($strict_route)) {
$strict_route = config('route_strict_mode');
}
// Extende a informação da URL
$modular_path->url .= $modular_path_data;
// Se houver uma definição de path, é necessário fazer uma busca por arquivos
// Primeiramente, é necessário separar a chamada
$modular_path_data = explode('/', $modular_path_data);
// Depois é necessário buscar pelo modular do endereço solicitado
// Ex: http://127.0.0.1/site
$modular_path_data = core::get_modular_parts($modular_path_data, array('search_paths' => false, 'path_clip_empty' => true, 'make_fullpath' => true));
// Se a modular não for definida, retorna um controller neutro
if (isset($modular_path_data->modular) === false) {
if ($strict_route === true) {
return new self($modular_path, null, $cancel_print, self::STATUS_CONTROLLER_INVALID | self::STATUS_MODULAR_REQUIRED, self::RETURN_TYPE_DEFAULT, false);
} else {
$modular_path_data->modular = (array) core_config::get_config(null, 'route_default_modular');
}
}
// Senão, armazena a informação
$modular_path->modular = $modular_path_data->modular;
// Depois é necessário buscar pelo controller do endereço solicitado
// Ex: http://127.0.0.1/site/master ou simplesmente http://127.0.0.1/master
$modular_path_data = core::get_modular_parts(@$modular_path_data->remains, array('start_dir' => $modular_path_data->fullpath . '/controllers', 'search_modules' => false));
// Se o controller não for definido, define com o valor padrão
if (!empty($modular_path_data->path)) {
$modular_path->path = $modular_path_data->path;
} else {
if ($strict_route === false) {
$modular_path->path = (array) core_config::get_config(null, 'route_default_controller');
} else {
return new self($modular_path, null, $cancel_print, self::STATUS_CONTROLLER_INVALID | self::STATUS_PATH_REQUIRED, self::RETURN_TYPE_DEFAULT, false);
}
}
// Gera o nome completo da chamada
$modular_path->class = core::get_joined_class($modular_path, 'controller');
// Se não existir mais informações para o method, usa o valor padrão
if (empty($modular_path_data->remains) === false) {
$modular_path->method = array_shift($modular_path_data->remains);
} else {
if ($strict_route === false) {
$modular_path->method = $default_method;
} else {
return new self($modular_path, null, $cancel_print, self::STATUS_CONTROLLER_INVALID | self::STATUS_METHOD_REQUIRED, self::RETURN_TYPE_DEFAULT, false);
}
}
}
// Gera o caminho completo do arquivo
$modular_path->fullpath = core::get_path_fixed(CORE_MODULES . '/' . join('/_', $modular_path->modular) . '/controllers/' . join('/', $modular_path->path) . '.php');
// Se o arquivo de controller não existir, usará o controler neutro
if (is_file($modular_path->fullpath) === false) {
return new self($modular_path, null, $cancel_print, self::STATUS_CONTROLLER_INVALID | self::STATUS_CONTROLLER_NOT_FOUND, self::RETURN_TYPE_DEFAULT, false);
}
// Senão, faz um require da classe solicitada
if (class_exists($modular_path->class, false) === false) {
core::do_require($modular_path->fullpath);
}
// Se for chamado um método diferente do padrão, mas este não existir, usa o método padrão
try {
if ($modular_path->method !== $default_method && method_exists($modular_path->class, $modular_path->method) === false) {
if ($strict_route === true) {
return new self($modular_path, null, $cancel_print, self::STATUS_CONTROLLER_INVALID | self::STATUS_METHOD_REQUIRED, self::RETURN_TYPE_DEFAULT, false);
}
array_unshift($modular_path_data->remains, $modular_path->method);
$modular_path->method = $default_method;
}
} catch (core_exception $e) {
$modular_path->method = $default_method;
}
//.........这里部分代码省略.........
示例6: get_available
public static function get_available($path = null, $lang_order = null)
{
// Se o path não for definido, usa o path atual
if ($path === null) {
$path = core::get_path_fixed(CORE_MODULES) . '/' . join('/_', core::get_caller_module_path()) . '/languages';
} else {
// Busca pelo caminho do language
$lang_path_data = core::get_modular_parts(explode('/', $path), array('modular_path_auto' => true, 'path_extension' => '/languages', 'make_fullpath' => true));
// Reconfigura o path
$path = $lang_path_data->fullpath;
}
// Se a pasta não existir, retorna null
//DEBUG: lançar uma exceção
if (!is_dir($path)) {
return null;
}
// Define a ordem de linguagem
$lang_order_data = $lang_order === true ? null : $lang_order;
// Obtém a tradução dos idiomas
$lang = lang('/core/languages', $lang_order_data);
// Obtém as pastas
$dir_res = opendir($path);
$dir_list = array();
while ($dir = readdir($dir_res)) {
if ($dir !== '.' && $dir !== '..' && is_dir("{$path}/{$dir}")) {
// Se a ordem de linguagem for true, usa a tradução local
if ($lang_order === true) {
$lang->set_language_order(array($dir, 'en'));
}
$dir_list[$dir] = $lang->get_value($dir);
}
}
ksort($dir_list);
return $dir_list;
}
示例7: _load_low_priorities
private static function _load_low_priorities($start_dir)
{
$priority_path = array_slice(explode('/', core::get_path_fixed($start_dir)), 0, -1);
// Enquanto puder...
while (true) {
// Une a prioridade
$priority_unify = join('/', $priority_path);
// Se os dados de configuração ainda não existe, carrega
// O processo só continuará se esta informação não existir
if (!isset(self::$_configs[$priority_unify])) {
core::do_require(CORE_MODULES . "/{$priority_unify}/configs.php");
array_pop($priority_path);
continue;
}
break;
}
}