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