タグ $content
人気順 10 users 50 users 100 users 500 users 1000 usersGet-Content の罠 - 鷲ノ巣
2017 - 12 - 20 Get-Content の罠 PowerShell 本記事は PowerShell Advent Calendar 2017 の 20 日目です。 1 分で読めます。 qiita.com 何が罠だって? こうするじゃろ? PS> echo foo > test.txt PS> echo bar >> test.txt で、こうするじゃろ? $content = Get... 続きを読む
PHP の file_get_contents は get どころか post も put も delete も upload もできる - tototoshi の日記
2014-06-10 PHP の file_get_contents は get どころか post も put も delete も upload もできる PHP stream_context_create と組み合わせて使います。 手元でてきとーに動かしてた REST API とかで試してます。 get 普通ですね。 <?php $content = json_decode(file_get... 続きを読む
[WordPress] 画像のみ、pタグで囲わないようにする - かちびと.net
Code 1 2 3 4 5 6 7 <?phpfunction remove_p_on_images($content){//画像のみpタグで囲わない return preg_replace('/<p>(\s*)(<img .* \/>)(\s*)<\/p>/iU', '\2', $content);}add_filter('the_content', 'remove_p_on_images')... 続きを読む