Skip to content

Instantly share code, notes, and snippets.

@tacktaddy
tacktaddy / townbot_open.php
Last active December 13, 2016 07:27
iタウンページから企業情報を収集するPHPスクリプト(大分県大分市版)
<?php
// NOTICEは出力しない
error_reporting(E_ALL & ~E_NOTICE);
// 改行文字
// ブラウザに出力したい場合は true->falseに変更
// テキストファイルで出力する場合はtrueでOK
$eol = (true) ? PHP_EOL : '<br>' ;