庐山烟雨浙江潮
未到千般恨不消
到得原来无别事
庐山烟雨浙江潮
| http { | |
| fastcgi_buffer_size 32k; | |
| fastcgi_buffers 8 16k; | |
| } |
庐山烟雨浙江潮
未到千般恨不消
到得原来无别事
庐山烟雨浙江潮
:verbose se ?
:verbose imap
:verbose set isk?
| function tweet($message, $username, $password) | |
| { | |
| $context = stream_context_create(array( | |
| 'http' => array( | |
| 'method' => 'POST', | |
| 'header' => sprintf("Authorization: Basic %s\r\n", base64_encode($username.':'.$password)). | |
| "Content-type: application/x-www-form-urlencoded\r\n", | |
| 'content' => http_build_query(array('status' => $message)), | |
| 'timeout' => 5, | |
| ), |
| curl http://sample.com/data.json | python -mjson.tool |
| { | |
| "require": { | |
| "composer/composer": "dev-master", | |
| "phpmd/phpmd": "dev-master", | |
| "fabpot/php-cs-fixer": "dev-master", | |
| "phpunit/phpunit": "3.7.*", | |
| "sebastian/phpcpd": "*", | |
| "phpdocumentor/phpdocumentor": "2.*", | |
| "sami/sami": "1.*", | |
| "squizlabs/php_codesniffer": "dev-master" |
| #!/usr/bin/env php | |
| <?php | |
| // 使用 php -l / phpmd / php-cs-fixer做检查,需要在项目根目录添加phpmd.xml(如果使用phpmd),.php_cs(如果使用phpcs并且有自定义的配置)文件 | |
| // 使用前执行 chmod +x path/to/pre-commit | |
| exec('git diff HEAD --name-only --diff-filter=AMRC', $filenames); | |
| $filenames = array_filter($filenames, function($filename) { | |
| return pathinfo($filename, PATHINFO_EXTENSION) === 'php'; |
| <?xml version="1.0"?> | |
| <ruleset name="xxx" | |
| xmlns="http://pmd.sf.net/ruleset/1.0.0" | |
| xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" | |
| xsi:schemaLocation="http://pmd.sf.net/ruleset/1.0.0 http://pmd.sf.net/ruleset_xml_schema.xsd" | |
| xsi:noNamespaceSchemaLocation="http://pmd.sf.net/ruleset_xml_schema.xsd"> | |
| <description>xxx</description> | |
| <!-- @see http://phpmd.org/rules/codesize.html#cyclomaticcomplexity --> | |
| <rule ref="rulesets/codesize.xml/CyclomaticComplexity"/> |