Hallo,
mein Code:
var_dump($arr_reg);
if(count($arr_reg == 1)) {
include("myfile.php");
}
ergibt:
array(1) { [0]=> string(4) "4359" }
Fatal error: Uncaught TypeError: count():
Argument #1 ($value) must be of type Countable|array, bool given in...
Widerspricht sich das nicht? 😕
Dass der include deshalb nicht funktioniert, muss ich sicher nicht erwähnen.
Ohne das if-Statement wird meine Datei includiert.
Jörg