0
Laravel是給我下面的錯誤信息:Laravel接口迭代器沒有發現
"Interface App\Libraries\Iterator" not found.
這是我的代碼:
class Combinations Implements Iterator
{
...
}
我能做些什麼來解決這個問題呢?
Laravel是給我下面的錯誤信息:Laravel接口迭代器沒有發現
"Interface App\Libraries\Iterator" not found.
這是我的代碼:
class Combinations Implements Iterator
{
...
}
我能做些什麼來解決這個問題呢?
這不是一個Laravel接口,它是一個PHP接口。它也駐留在全局名稱空間中。請嘗試以下...
class Combinations implements \Iterator {
}
或者替代選項,'使用iterator;'在文件的頂部。 – ceejayoz
感謝它的工作 – herysepty