This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
find . -name "*.php" ! -path "./tmp/*" | xargs xgettext --default-domain=myapp --output=myapp.pot --language=PHP --indent --no-wrap --sort-output --omit-header |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
array( 'start' => 2, 'length' => 20, 'field' => 'IDOrdemPenhora', 'trim' => true,), | |
array( 'start' => 20, 'length' => 10, 'field' => 'DataOrdemPenhora', 'trim' => true, ), | |
array( 'start' => 30, 'length' => 4, 'field' => 'ATServiceCode', 'trim' => true, ), | |
array( 'start' => 34, 'length' => 39, 'field' => 'ATServiceName', 'trim' => true, ), | |
array( 'start' => 73, 'length' => 60, 'field' => 'ATServiceAddress', 'trim' => true, ), | |
array( 'start' => 133, 'length' => 8, 'field' => 'ATServiceZipCode', 'trim' => true, ), | |
array( 'start' => 142, 'length' => 32, 'field' => 'ATServiceLocality', 'trim' => true, ), | |
array( 'start' => 174, 'length' => 11, 'field' => 'ATServicePhone', 'trim' => true, ), |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/** | |
* Parse the URL and return the query string as PHP array | |
* | |
* @param string $url | |
* | |
* @return array | |
*/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var countries = [ | |
{ | |
name: "Aaland Islands", | |
code2: "AX", | |
code3: "ALA", | |
}, | |
{ | |
name: "Afghanistan", | |
code2: "AF", | |
code3: "AFG", |