├── .gitignore ├── LICENSE ├── README.md ├── composer.json ├── config.json ├── examples └── formatter.php ├── ext ├── .deps ├── .libs │ ├── jalali.la │ ├── jalali.lai │ ├── jalali.o │ └── jalali.so ├── Makefile ├── Makefile.fragments ├── Makefile.global ├── Makefile.objects ├── acinclude.m4 ├── aclocal.m4 ├── autom4te.cache │ ├── output.0 │ ├── requests │ └── traces.0 ├── build │ ├── libtool.m4 │ ├── ltoptions.m4 │ ├── ltsugar.m4 │ ├── ltversion.m4 │ ├── lt~obsolete.m4 │ ├── mkdep.awk │ ├── scan_makefile_in.awk │ └── shtool ├── clean ├── config.guess ├── config.h ├── config.h.in ├── config.log ├── config.m4 ├── config.nice ├── config.status ├── config.sub ├── configure ├── configure.in ├── ext.h ├── ext_config.h ├── install ├── install-sh ├── jalali.c ├── jalali.h ├── jalali.la ├── jalali.lo ├── jalali │ ├── .libs │ │ └── date.o │ ├── date.lo │ ├── date.zep.c │ └── date.zep.h ├── kernel │ ├── .libs │ │ ├── array.o │ │ ├── backtrace.o │ │ ├── concat.o │ │ ├── debug.o │ │ ├── exception.o │ │ ├── exit.o │ │ ├── fcall.o │ │ ├── file.o │ │ ├── filter.o │ │ ├── hash.o │ │ ├── iterator.o │ │ ├── main.o │ │ ├── memory.o │ │ ├── object.o │ │ ├── operators.o │ │ ├── require.o │ │ ├── string.o │ │ └── variables.o │ ├── README.md │ ├── array.c │ ├── array.h │ ├── array.lo │ ├── assert.c │ ├── assert.h │ ├── backtrace.c │ ├── backtrace.h │ ├── backtrace.lo │ ├── concat.c │ ├── concat.h │ ├── concat.lo │ ├── debug.c │ ├── debug.h │ ├── debug.lo │ ├── exception.c │ ├── exception.h │ ├── exception.lo │ ├── exit.c │ ├── exit.h │ ├── exit.lo │ ├── extended │ │ ├── .libs │ │ │ └── array.o │ │ ├── array.c │ │ ├── array.h │ │ └── array.lo │ ├── fcall.c │ ├── fcall.h │ ├── fcall.lo │ ├── file.c │ ├── file.h │ ├── file.lo │ ├── filter.c │ ├── filter.h │ ├── filter.lo │ ├── globals.h │ ├── hash.c │ ├── hash.h │ ├── hash.lo │ ├── iterator.c │ ├── iterator.h │ ├── iterator.lo │ ├── main.c │ ├── main.h │ ├── main.lo │ ├── memory.c │ ├── memory.h │ ├── memory.lo │ ├── object.c │ ├── object.h │ ├── object.lo │ ├── operators.c │ ├── operators.h │ ├── operators.lo │ ├── output.c │ ├── output.h │ ├── persistent.c │ ├── persistent.h │ ├── require.c │ ├── require.h │ ├── require.lo │ ├── session.c │ ├── session.h │ ├── string.c │ ├── string.h │ ├── string.lo │ ├── variables.c │ ├── variables.h │ └── variables.lo ├── libtool ├── ltmain.sh ├── missing ├── mkinstalldirs ├── modules │ └── jalali.so ├── php_ext.h ├── php_jalali.h └── run-tests.php ├── jalali └── date.zep └── src └── Date.php /.gitignore: -------------------------------------------------------------------------------- 1 | /vendor/ 2 | .temp 3 | *.log -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohebifar/php-jalali-extension/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohebifar/php-jalali-extension/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohebifar/php-jalali-extension/HEAD/composer.json -------------------------------------------------------------------------------- /config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohebifar/php-jalali-extension/HEAD/config.json -------------------------------------------------------------------------------- /examples/formatter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohebifar/php-jalali-extension/HEAD/examples/formatter.php -------------------------------------------------------------------------------- /ext/.deps: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ext/.libs/jalali.la: -------------------------------------------------------------------------------- 1 | ../jalali.la -------------------------------------------------------------------------------- /ext/.libs/jalali.lai: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohebifar/php-jalali-extension/HEAD/ext/.libs/jalali.lai -------------------------------------------------------------------------------- /ext/.libs/jalali.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohebifar/php-jalali-extension/HEAD/ext/.libs/jalali.o -------------------------------------------------------------------------------- /ext/.libs/jalali.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohebifar/php-jalali-extension/HEAD/ext/.libs/jalali.so -------------------------------------------------------------------------------- /ext/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohebifar/php-jalali-extension/HEAD/ext/Makefile -------------------------------------------------------------------------------- /ext/Makefile.fragments: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ext/Makefile.global: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohebifar/php-jalali-extension/HEAD/ext/Makefile.global -------------------------------------------------------------------------------- /ext/Makefile.objects: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohebifar/php-jalali-extension/HEAD/ext/Makefile.objects -------------------------------------------------------------------------------- /ext/acinclude.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohebifar/php-jalali-extension/HEAD/ext/acinclude.m4 -------------------------------------------------------------------------------- /ext/aclocal.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohebifar/php-jalali-extension/HEAD/ext/aclocal.m4 -------------------------------------------------------------------------------- /ext/autom4te.cache/output.0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohebifar/php-jalali-extension/HEAD/ext/autom4te.cache/output.0 -------------------------------------------------------------------------------- /ext/autom4te.cache/requests: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohebifar/php-jalali-extension/HEAD/ext/autom4te.cache/requests -------------------------------------------------------------------------------- /ext/autom4te.cache/traces.0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohebifar/php-jalali-extension/HEAD/ext/autom4te.cache/traces.0 -------------------------------------------------------------------------------- /ext/build/libtool.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohebifar/php-jalali-extension/HEAD/ext/build/libtool.m4 -------------------------------------------------------------------------------- /ext/build/ltoptions.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohebifar/php-jalali-extension/HEAD/ext/build/ltoptions.m4 -------------------------------------------------------------------------------- /ext/build/ltsugar.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohebifar/php-jalali-extension/HEAD/ext/build/ltsugar.m4 -------------------------------------------------------------------------------- /ext/build/ltversion.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohebifar/php-jalali-extension/HEAD/ext/build/ltversion.m4 -------------------------------------------------------------------------------- /ext/build/lt~obsolete.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohebifar/php-jalali-extension/HEAD/ext/build/lt~obsolete.m4 -------------------------------------------------------------------------------- /ext/build/mkdep.awk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohebifar/php-jalali-extension/HEAD/ext/build/mkdep.awk -------------------------------------------------------------------------------- /ext/build/scan_makefile_in.awk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohebifar/php-jalali-extension/HEAD/ext/build/scan_makefile_in.awk -------------------------------------------------------------------------------- /ext/build/shtool: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohebifar/php-jalali-extension/HEAD/ext/build/shtool -------------------------------------------------------------------------------- /ext/clean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohebifar/php-jalali-extension/HEAD/ext/clean -------------------------------------------------------------------------------- /ext/config.guess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohebifar/php-jalali-extension/HEAD/ext/config.guess -------------------------------------------------------------------------------- /ext/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohebifar/php-jalali-extension/HEAD/ext/config.h -------------------------------------------------------------------------------- /ext/config.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohebifar/php-jalali-extension/HEAD/ext/config.h.in -------------------------------------------------------------------------------- /ext/config.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohebifar/php-jalali-extension/HEAD/ext/config.log -------------------------------------------------------------------------------- /ext/config.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohebifar/php-jalali-extension/HEAD/ext/config.m4 -------------------------------------------------------------------------------- /ext/config.nice: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohebifar/php-jalali-extension/HEAD/ext/config.nice -------------------------------------------------------------------------------- /ext/config.status: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohebifar/php-jalali-extension/HEAD/ext/config.status -------------------------------------------------------------------------------- /ext/config.sub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohebifar/php-jalali-extension/HEAD/ext/config.sub -------------------------------------------------------------------------------- /ext/configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohebifar/php-jalali-extension/HEAD/ext/configure -------------------------------------------------------------------------------- /ext/configure.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohebifar/php-jalali-extension/HEAD/ext/configure.in -------------------------------------------------------------------------------- /ext/ext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohebifar/php-jalali-extension/HEAD/ext/ext.h -------------------------------------------------------------------------------- /ext/ext_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohebifar/php-jalali-extension/HEAD/ext/ext_config.h -------------------------------------------------------------------------------- /ext/install: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohebifar/php-jalali-extension/HEAD/ext/install -------------------------------------------------------------------------------- /ext/install-sh: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ext/jalali.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohebifar/php-jalali-extension/HEAD/ext/jalali.c -------------------------------------------------------------------------------- /ext/jalali.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohebifar/php-jalali-extension/HEAD/ext/jalali.h -------------------------------------------------------------------------------- /ext/jalali.la: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohebifar/php-jalali-extension/HEAD/ext/jalali.la -------------------------------------------------------------------------------- /ext/jalali.lo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohebifar/php-jalali-extension/HEAD/ext/jalali.lo -------------------------------------------------------------------------------- /ext/jalali/.libs/date.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohebifar/php-jalali-extension/HEAD/ext/jalali/.libs/date.o -------------------------------------------------------------------------------- /ext/jalali/date.lo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohebifar/php-jalali-extension/HEAD/ext/jalali/date.lo -------------------------------------------------------------------------------- /ext/jalali/date.zep.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohebifar/php-jalali-extension/HEAD/ext/jalali/date.zep.c -------------------------------------------------------------------------------- /ext/jalali/date.zep.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohebifar/php-jalali-extension/HEAD/ext/jalali/date.zep.h -------------------------------------------------------------------------------- /ext/kernel/.libs/array.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohebifar/php-jalali-extension/HEAD/ext/kernel/.libs/array.o -------------------------------------------------------------------------------- /ext/kernel/.libs/backtrace.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohebifar/php-jalali-extension/HEAD/ext/kernel/.libs/backtrace.o -------------------------------------------------------------------------------- /ext/kernel/.libs/concat.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohebifar/php-jalali-extension/HEAD/ext/kernel/.libs/concat.o -------------------------------------------------------------------------------- /ext/kernel/.libs/debug.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohebifar/php-jalali-extension/HEAD/ext/kernel/.libs/debug.o -------------------------------------------------------------------------------- /ext/kernel/.libs/exception.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohebifar/php-jalali-extension/HEAD/ext/kernel/.libs/exception.o -------------------------------------------------------------------------------- /ext/kernel/.libs/exit.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohebifar/php-jalali-extension/HEAD/ext/kernel/.libs/exit.o -------------------------------------------------------------------------------- /ext/kernel/.libs/fcall.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohebifar/php-jalali-extension/HEAD/ext/kernel/.libs/fcall.o -------------------------------------------------------------------------------- /ext/kernel/.libs/file.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohebifar/php-jalali-extension/HEAD/ext/kernel/.libs/file.o -------------------------------------------------------------------------------- /ext/kernel/.libs/filter.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohebifar/php-jalali-extension/HEAD/ext/kernel/.libs/filter.o -------------------------------------------------------------------------------- /ext/kernel/.libs/hash.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohebifar/php-jalali-extension/HEAD/ext/kernel/.libs/hash.o -------------------------------------------------------------------------------- /ext/kernel/.libs/iterator.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohebifar/php-jalali-extension/HEAD/ext/kernel/.libs/iterator.o -------------------------------------------------------------------------------- /ext/kernel/.libs/main.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohebifar/php-jalali-extension/HEAD/ext/kernel/.libs/main.o -------------------------------------------------------------------------------- /ext/kernel/.libs/memory.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohebifar/php-jalali-extension/HEAD/ext/kernel/.libs/memory.o -------------------------------------------------------------------------------- /ext/kernel/.libs/object.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohebifar/php-jalali-extension/HEAD/ext/kernel/.libs/object.o -------------------------------------------------------------------------------- /ext/kernel/.libs/operators.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohebifar/php-jalali-extension/HEAD/ext/kernel/.libs/operators.o -------------------------------------------------------------------------------- /ext/kernel/.libs/require.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohebifar/php-jalali-extension/HEAD/ext/kernel/.libs/require.o -------------------------------------------------------------------------------- /ext/kernel/.libs/string.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohebifar/php-jalali-extension/HEAD/ext/kernel/.libs/string.o -------------------------------------------------------------------------------- /ext/kernel/.libs/variables.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohebifar/php-jalali-extension/HEAD/ext/kernel/.libs/variables.o -------------------------------------------------------------------------------- /ext/kernel/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohebifar/php-jalali-extension/HEAD/ext/kernel/README.md -------------------------------------------------------------------------------- /ext/kernel/array.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohebifar/php-jalali-extension/HEAD/ext/kernel/array.c -------------------------------------------------------------------------------- /ext/kernel/array.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohebifar/php-jalali-extension/HEAD/ext/kernel/array.h -------------------------------------------------------------------------------- /ext/kernel/array.lo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohebifar/php-jalali-extension/HEAD/ext/kernel/array.lo -------------------------------------------------------------------------------- /ext/kernel/assert.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohebifar/php-jalali-extension/HEAD/ext/kernel/assert.c -------------------------------------------------------------------------------- /ext/kernel/assert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohebifar/php-jalali-extension/HEAD/ext/kernel/assert.h -------------------------------------------------------------------------------- /ext/kernel/backtrace.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohebifar/php-jalali-extension/HEAD/ext/kernel/backtrace.c -------------------------------------------------------------------------------- /ext/kernel/backtrace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohebifar/php-jalali-extension/HEAD/ext/kernel/backtrace.h -------------------------------------------------------------------------------- /ext/kernel/backtrace.lo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohebifar/php-jalali-extension/HEAD/ext/kernel/backtrace.lo -------------------------------------------------------------------------------- /ext/kernel/concat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohebifar/php-jalali-extension/HEAD/ext/kernel/concat.c -------------------------------------------------------------------------------- /ext/kernel/concat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohebifar/php-jalali-extension/HEAD/ext/kernel/concat.h -------------------------------------------------------------------------------- /ext/kernel/concat.lo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohebifar/php-jalali-extension/HEAD/ext/kernel/concat.lo -------------------------------------------------------------------------------- /ext/kernel/debug.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohebifar/php-jalali-extension/HEAD/ext/kernel/debug.c -------------------------------------------------------------------------------- /ext/kernel/debug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohebifar/php-jalali-extension/HEAD/ext/kernel/debug.h -------------------------------------------------------------------------------- /ext/kernel/debug.lo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohebifar/php-jalali-extension/HEAD/ext/kernel/debug.lo -------------------------------------------------------------------------------- /ext/kernel/exception.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohebifar/php-jalali-extension/HEAD/ext/kernel/exception.c -------------------------------------------------------------------------------- /ext/kernel/exception.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohebifar/php-jalali-extension/HEAD/ext/kernel/exception.h -------------------------------------------------------------------------------- /ext/kernel/exception.lo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohebifar/php-jalali-extension/HEAD/ext/kernel/exception.lo -------------------------------------------------------------------------------- /ext/kernel/exit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohebifar/php-jalali-extension/HEAD/ext/kernel/exit.c -------------------------------------------------------------------------------- /ext/kernel/exit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohebifar/php-jalali-extension/HEAD/ext/kernel/exit.h -------------------------------------------------------------------------------- /ext/kernel/exit.lo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohebifar/php-jalali-extension/HEAD/ext/kernel/exit.lo -------------------------------------------------------------------------------- /ext/kernel/extended/.libs/array.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohebifar/php-jalali-extension/HEAD/ext/kernel/extended/.libs/array.o -------------------------------------------------------------------------------- /ext/kernel/extended/array.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohebifar/php-jalali-extension/HEAD/ext/kernel/extended/array.c -------------------------------------------------------------------------------- /ext/kernel/extended/array.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohebifar/php-jalali-extension/HEAD/ext/kernel/extended/array.h -------------------------------------------------------------------------------- /ext/kernel/extended/array.lo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohebifar/php-jalali-extension/HEAD/ext/kernel/extended/array.lo -------------------------------------------------------------------------------- /ext/kernel/fcall.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohebifar/php-jalali-extension/HEAD/ext/kernel/fcall.c -------------------------------------------------------------------------------- /ext/kernel/fcall.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohebifar/php-jalali-extension/HEAD/ext/kernel/fcall.h -------------------------------------------------------------------------------- /ext/kernel/fcall.lo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohebifar/php-jalali-extension/HEAD/ext/kernel/fcall.lo -------------------------------------------------------------------------------- /ext/kernel/file.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohebifar/php-jalali-extension/HEAD/ext/kernel/file.c -------------------------------------------------------------------------------- /ext/kernel/file.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohebifar/php-jalali-extension/HEAD/ext/kernel/file.h -------------------------------------------------------------------------------- /ext/kernel/file.lo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohebifar/php-jalali-extension/HEAD/ext/kernel/file.lo -------------------------------------------------------------------------------- /ext/kernel/filter.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohebifar/php-jalali-extension/HEAD/ext/kernel/filter.c -------------------------------------------------------------------------------- /ext/kernel/filter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohebifar/php-jalali-extension/HEAD/ext/kernel/filter.h -------------------------------------------------------------------------------- /ext/kernel/filter.lo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohebifar/php-jalali-extension/HEAD/ext/kernel/filter.lo -------------------------------------------------------------------------------- /ext/kernel/globals.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohebifar/php-jalali-extension/HEAD/ext/kernel/globals.h -------------------------------------------------------------------------------- /ext/kernel/hash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohebifar/php-jalali-extension/HEAD/ext/kernel/hash.c -------------------------------------------------------------------------------- /ext/kernel/hash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohebifar/php-jalali-extension/HEAD/ext/kernel/hash.h -------------------------------------------------------------------------------- /ext/kernel/hash.lo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohebifar/php-jalali-extension/HEAD/ext/kernel/hash.lo -------------------------------------------------------------------------------- /ext/kernel/iterator.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohebifar/php-jalali-extension/HEAD/ext/kernel/iterator.c -------------------------------------------------------------------------------- /ext/kernel/iterator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohebifar/php-jalali-extension/HEAD/ext/kernel/iterator.h -------------------------------------------------------------------------------- /ext/kernel/iterator.lo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohebifar/php-jalali-extension/HEAD/ext/kernel/iterator.lo -------------------------------------------------------------------------------- /ext/kernel/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohebifar/php-jalali-extension/HEAD/ext/kernel/main.c -------------------------------------------------------------------------------- /ext/kernel/main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohebifar/php-jalali-extension/HEAD/ext/kernel/main.h -------------------------------------------------------------------------------- /ext/kernel/main.lo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohebifar/php-jalali-extension/HEAD/ext/kernel/main.lo -------------------------------------------------------------------------------- /ext/kernel/memory.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohebifar/php-jalali-extension/HEAD/ext/kernel/memory.c -------------------------------------------------------------------------------- /ext/kernel/memory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohebifar/php-jalali-extension/HEAD/ext/kernel/memory.h -------------------------------------------------------------------------------- /ext/kernel/memory.lo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohebifar/php-jalali-extension/HEAD/ext/kernel/memory.lo -------------------------------------------------------------------------------- /ext/kernel/object.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohebifar/php-jalali-extension/HEAD/ext/kernel/object.c -------------------------------------------------------------------------------- /ext/kernel/object.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohebifar/php-jalali-extension/HEAD/ext/kernel/object.h -------------------------------------------------------------------------------- /ext/kernel/object.lo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohebifar/php-jalali-extension/HEAD/ext/kernel/object.lo -------------------------------------------------------------------------------- /ext/kernel/operators.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohebifar/php-jalali-extension/HEAD/ext/kernel/operators.c -------------------------------------------------------------------------------- /ext/kernel/operators.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohebifar/php-jalali-extension/HEAD/ext/kernel/operators.h -------------------------------------------------------------------------------- /ext/kernel/operators.lo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohebifar/php-jalali-extension/HEAD/ext/kernel/operators.lo -------------------------------------------------------------------------------- /ext/kernel/output.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohebifar/php-jalali-extension/HEAD/ext/kernel/output.c -------------------------------------------------------------------------------- /ext/kernel/output.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohebifar/php-jalali-extension/HEAD/ext/kernel/output.h -------------------------------------------------------------------------------- /ext/kernel/persistent.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohebifar/php-jalali-extension/HEAD/ext/kernel/persistent.c -------------------------------------------------------------------------------- /ext/kernel/persistent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohebifar/php-jalali-extension/HEAD/ext/kernel/persistent.h -------------------------------------------------------------------------------- /ext/kernel/require.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohebifar/php-jalali-extension/HEAD/ext/kernel/require.c -------------------------------------------------------------------------------- /ext/kernel/require.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohebifar/php-jalali-extension/HEAD/ext/kernel/require.h -------------------------------------------------------------------------------- /ext/kernel/require.lo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohebifar/php-jalali-extension/HEAD/ext/kernel/require.lo -------------------------------------------------------------------------------- /ext/kernel/session.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohebifar/php-jalali-extension/HEAD/ext/kernel/session.c -------------------------------------------------------------------------------- /ext/kernel/session.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohebifar/php-jalali-extension/HEAD/ext/kernel/session.h -------------------------------------------------------------------------------- /ext/kernel/string.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohebifar/php-jalali-extension/HEAD/ext/kernel/string.c -------------------------------------------------------------------------------- /ext/kernel/string.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohebifar/php-jalali-extension/HEAD/ext/kernel/string.h -------------------------------------------------------------------------------- /ext/kernel/string.lo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohebifar/php-jalali-extension/HEAD/ext/kernel/string.lo -------------------------------------------------------------------------------- /ext/kernel/variables.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohebifar/php-jalali-extension/HEAD/ext/kernel/variables.c -------------------------------------------------------------------------------- /ext/kernel/variables.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohebifar/php-jalali-extension/HEAD/ext/kernel/variables.h -------------------------------------------------------------------------------- /ext/kernel/variables.lo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohebifar/php-jalali-extension/HEAD/ext/kernel/variables.lo -------------------------------------------------------------------------------- /ext/libtool: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohebifar/php-jalali-extension/HEAD/ext/libtool -------------------------------------------------------------------------------- /ext/ltmain.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohebifar/php-jalali-extension/HEAD/ext/ltmain.sh -------------------------------------------------------------------------------- /ext/missing: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ext/mkinstalldirs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ext/modules/jalali.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohebifar/php-jalali-extension/HEAD/ext/modules/jalali.so -------------------------------------------------------------------------------- /ext/php_ext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohebifar/php-jalali-extension/HEAD/ext/php_ext.h -------------------------------------------------------------------------------- /ext/php_jalali.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohebifar/php-jalali-extension/HEAD/ext/php_jalali.h -------------------------------------------------------------------------------- /ext/run-tests.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohebifar/php-jalali-extension/HEAD/ext/run-tests.php -------------------------------------------------------------------------------- /jalali/date.zep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohebifar/php-jalali-extension/HEAD/jalali/date.zep -------------------------------------------------------------------------------- /src/Date.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohebifar/php-jalali-extension/HEAD/src/Date.php --------------------------------------------------------------------------------