雑記まみむメモ

雑記、メモ、技法、話題の騒動などを紹介します。

2017-02-01から1ヶ月間の記事一覧

Methods with the same name as their class will not be constructors in a future version of PHP エラー

php5.2からphp7に変更対応したときにでてきたエラーhttp://php.net/manual/ja/migration70.deprecated.php PHP 4 形式のコンストラクタ (クラス名と同じ名前のメソッドを定義するもの) が非推奨となりました。将来的に削除される見込みです。 PHP 7 では、ク…

A non-numeric value encountered PHP エラー

php5.2からphp7に変更対応したときにでてきたエラー https://secure.php.net/manual/ja/migration71.other-changes.php 数値形式ではない文字列を使って、数値を期待する演算 (+ - * / ** % << >> | & ^ や、これらを用いた代入演算) を行おうとしたときに、…