2011-12-22から1日間の記事一覧

simplexmlを使ってxmlをどうにかする

PHP

今回使おうとしたxmlのencodingがx-sjis-cp932でした。 そうすると、simplexml_load_stringすると「そんなエンコード知らねぇよ」と言われます。 なので、以下のようにすると良いです。 $file = "./tmp.xml" if(file_exists($file)){ $str = file_get_conten…

file_get_contensでPOSTやGETを送信する方法

PHP

どうも、忘年会なのにコンディション最悪なたかとしです。なんか眠いしだるい…疲れてんのかなー 本題。 GETの場合 $headers = array( 'Content_Type: application/x-www-form-urlencoded', 'User-Agent: file_get_contents', ); $options = array( 'http'=>a…