当前位置: 首页>>代码示例>>PHP>>正文


PHP MultiByte::strrpos方法代码示例

本文整理汇总了PHP中MultiByte::strrpos方法的典型用法代码示例。如果您正苦于以下问题:PHP MultiByte::strrpos方法的具体用法?PHP MultiByte::strrpos怎么用?PHP MultiByte::strrpos使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在MultiByte的用法示例。


在下文中一共展示了MultiByte::strrpos方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。

示例1: test_strrpos

 public function test_strrpos()
 {
     $this->assert_equal(MultiByte::strrpos($this->test_strings['lowercase'], $this->test_strings['strpos']), 2);
     $this->assert_equal(MultiByte::strrpos($this->test_strings['international'], 'n'), 38);
     // the string is 48 BYTES long, only 38 characters long
 }
开发者ID:habari,项目名称:tests,代码行数:6,代码来源:test_multibyte.php

示例2: create_default_options

 /**
  * Write the default options
  */
 private function create_default_options()
 {
     // Create the default options
     Options::set('installed', true);
     Options::set('title', $this->handler_vars['blog_title']);
     Options::set('base_url', MultiByte::substr($_SERVER['REQUEST_URI'], 0, MultiByte::strrpos($_SERVER['REQUEST_URI'], '/') + 1));
     Options::set('pagination', '5');
     Options::set('atom_entries', '5');
     Options::set('theme_name', 'k2');
     Options::set('theme_dir', 'k2');
     Options::set('comments_require_id', 1);
     Options::set('locale', $this->handler_vars['locale']);
     Options::set('timezone', 'UTC');
     Options::set('dateformat', 'Y-m-d');
     Options::set('timeformat', 'g:i a');
     // generate a random-ish number to use as the salt for
     // a SHA1 hash that will serve as the unique identifier for
     // this installation.  Also for use in cookies
     Options::set('GUID', sha1(Options::get('base_url') . Utils::nonce()));
     // Let's prepare the EventLog here, as well
     EventLog::register_type('default', 'habari');
     EventLog::register_type('user', 'habari');
     EventLog::register_type('authentication', 'habari');
     EventLog::register_type('content', 'habari');
     EventLog::register_type('comment', 'habari');
     // Add the cronjob to truncate the log so that it doesn't get too big
     CronTab::add_daily_cron('truncate_log', array('Utils', 'truncate_log'), _t('Truncate the log table'));
     return true;
 }
开发者ID:psaintlaurent,项目名称:Habari,代码行数:32,代码来源:installhandler.php


注:本文中的MultiByte::strrpos方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。