Be part of JetBrains PHPverse 2026 on June 9 – a free online event bringing PHP devs worldwide together.

strategicsdemexico's avatar

Cities and Counties of CA, USA array PHP

Some of you know where can I found and PHP array of all counties with the cities of California?

0 likes
3 replies
igaster's avatar

Hello! I've build a package Laravel Cities that might help you. You can seed localy all the cities of any country on the world (provided by geonames.org) and perform any query with the provided Eloquent model. For example you can perform queries like this

// Get cities of Califirnia
Geo::getCountry('US')
    ->search('California')->first() // You can can locate it by id instead
    ->descentants()
    ->get();

Please or to participate in this conversation.