雑記まみむメモ

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

2016-01-04から1日間の記事一覧

phpエラー Array to string conversion in とは

phpのエラーメッセージ「Array to string conversion in」の原因 google翻訳で翻訳してみる 「文字列への変換アレイで」 エラー原因 関数の引数でstringを使用する所にarray(配列のデータ)を渡している 配列を文字列変換したためにエラーが出ている

ERROR 1075: Incorrect table definition; There can only be one auto column and it must be defined as a key

ERROR 1075: Incorrect table definition; There can only be one auto column and it must be defined as a key の原因 create table文に問題がある. PRIMARY KEY(id)を追記する必要がある. 自動生成する値がある場合は、主キーにしてインデクス付けする必…

Warning: Missing argument というエラー

php

Warning: Missing argument というエラーの原因は... Warning: Missing argument [引数] for クラス名::関数名().... クラスの関数の引数が合ってない時のエラー 関数の引数を良く確認するべし