PHP code example of mmo-and-friends / estados-municipios-mexico

1. Go to this page and download the library: Download mmo-and-friends/estados-municipios-mexico library. Choose the download type require.

2. Extract the ZIP file and open the index.php.

3. Add this code to the index.php.
    
        
<?php
require_once('vendor/autoload.php');

/* Start to develop here. Best regards https://php-download.com/ */

    

mmo-and-friends / estados-municipios-mexico example snippets


    use MmoAndFriends\Mexico\Mexico;
    use MmoAndFriends\Mexico\MexicoTrait;

    class Dummy {
        $estados = Mexico::estados();
        $municipios = Mexico::municipiosDeEstado($estados[0]->id)
    }

    class DummyTrait {
        use MexicoTrait;

        $estados = $this->estados()
        $municipios = $this->municipiosDeEstado($estados[0]->id)
    }