2
1

More than 3 years have passed since last update.

PHPで開発してて出会ったエラー達[随時更新]

Last updated at Posted at 2020-01-03

出会ったエラーの数だけ人は成長していくと誰かが言っていた。自分用のメモとして、出会ったエラーを書き残してく。

implode(): Invalid arguments passed in ~

implodeとか使う時、たまに出くわします。
単純に引数にarrayでないものを渡してしまっている。

error.php

//$band[]が正解
$band = 'John';
$band = 'Paul';
$band = 'George';
$band = 'Ringo';

//配列を渡していない。
$result = implode("\t", $band);
2
1
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
2
1