Blood.Cold
文章 257
PHP phalcon将路由将驼峰换成分隔符
如原始网址为:http://example.com/admin/products/show-latest-pr…
2,864次阅读
PHP 2019-06-03
PHP php过滤emoji表情字符
function remove_emoji($string) { // Match Emoticons $re…
2,711次阅读
PHP 2019-06-03
PHP 使用file_get_contents发送post请求带上body
$content = stream_context_create([ ‘http’ => [ ‘meth…
2,683次阅读
PHP 2019-06-03
PHP 在phalcon中使用自定义事件
lass Comment {const NAME = ‘comment’; const NAME_PUBLIS…
2,861次阅读
PHP 2019-06-03
PHP PHP将一个数组转换成Xml
<?php $test_array = array (‘bla’ => ‘blub’, ‘foo’…
2,702次阅读
PHP 2019-06-03
PHP php通过大写字母分割字符串
使用 preg_split 和表达工 [A-Z] 来分割: function splitAtUpperCase…
2,851次阅读
PHP 2019-06-03
PHP Symfony事件调度器的使用
调度器组件提供允许应用程序通过调度事件并收听事件来相互通信。在使用面向对象开发时,我们把类的职责分配的很单一,…
2,755次阅读
PHP 2019-06-03
PHP twig中使用continue和break
Break {% set break = false %} {% for post in posts if n…
2,920次阅读
PHP 2019-06-03
PHP 在twig中使用strpos函数
默认情况: {# returns true #} {{1 in [1, 2, 3] }} {{‘cd’ in …
2,751次阅读
PHP 2019-06-03