Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
125 views
in Technique[技术] by (71.8m points)

php - Laravel: find out if variable is collection

I want to find out if a variable is a collection.

I can't use is_object() because it will be true even if it is not an collection. For now I use this, and it works:

if(is_object($images) && get_class($images) != 'IlluminateDatabaseEloquentCollection') {

But I think it's so ugly that I spend time asking you about another solution.

Do you have any idea?

question from:https://stackoverflow.com/questions/34619145/laravel-find-out-if-variable-is-collection

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

Couldn't you use

if(is_a($images, 'IlluminateDatabaseEloquentCollection')) {
    ....do whatever for a collection....
} else {
    ....do whatever for not a collection....
}

Or

if ($images instanceof IlluminateDatabaseEloquentCollection) {

}

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...