This file contains hidden or 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
| <?xml version="1.0" encoding="UTF-8"?> | |
| <project name="TheProject" default="build" basedir="."> | |
| <!-- Altere estas propriedades adequando-as ao seu projeto --> | |
| <property name="application.library" value="${project.basedir}/library"/> | |
| <property name="application.tests" value="${project.basedir}/tests"/> | |
| <property name="application.builddir" value="${project.basedir}/build"/> | |
| <target name="build" |
This file contains hidden or 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 | |
| // [email protected] 17-Oct-2012 08:31 | |
| // Compares two arrays- keys and values (as strings) must match. | |
| // Keys and order must be the same to be equal. | |
| function arraysEqual($arr1, $arr2){ | |
| if(count($arr1) != count($arr2)){ | |
| return(FALSE); | |
| }else{ | |
| $arrStr1 = serialize($arr1); | |
| $arrStr2 = serialize($arr2); |
NewerOlder