├── BUGS ├── CHANGES ├── CODING_STANDARDS ├── COPYING ├── CREDITS ├── ChangeLog ├── INSTALL ├── INSTALL.DSO ├── INSTALL.REDHAT ├── LICENSE ├── Makefile.in ├── README.QNX ├── README.WIN32 ├── README.md ├── README.t1lib ├── acconfig.h ├── aclocal.m4 ├── alloc.c ├── alloca.c ├── apMakefile.libdir ├── apMakefile.tmpl ├── apidoc.txt ├── benchmarks ├── bench2 ├── bench3 ├── bench4 ├── bench5 ├── bench6 └── bench7 ├── config.guess ├── config.h.in ├── config.sub ├── config.w32.h ├── configuration-parser.tab.c ├── configuration-parser.tab.h ├── configuration-parser.y ├── configuration-scanner.c ├── configuration-scanner.lex ├── configure ├── configure.in ├── constants.c ├── constants.h ├── control_structures.h ├── control_structures_inline.h ├── convertor ├── Makefile ├── README ├── alloc.c ├── convertor.dsp ├── language-parser.output ├── language-parser.tab.c ├── language-parser.tab.h ├── language-parser.y ├── language-scanner.c ├── language-scanner.h ├── language-scanner.lex ├── main.c ├── main.h ├── makeparser.bat ├── php_alloc.h ├── token_cache.c └── token_cache.h ├── dbase ├── HISTORY ├── Makefile.in ├── README ├── dbf.h ├── dbf_head.c ├── dbf_head.h ├── dbf_misc.c ├── dbf_misc.h ├── dbf_ndx.c ├── dbf_ndx.h ├── dbf_rec.c ├── dbf_rec.h ├── dbfadd.c ├── dbfcr.sh ├── dbfcreat.c ├── dbfdel.c ├── dbfget.c ├── dbflst.c ├── dbfndx.c ├── dbfpack.c ├── dbfscan.sh ├── dbftst.c └── tmpl.c ├── debugger.c ├── dl ├── Makefile.tmpl ├── README ├── calendar │ ├── calendar.c │ ├── dow.c │ ├── easter.c │ ├── french.c │ ├── gregor.c │ ├── jewish.c │ ├── julian.c │ └── sdncal.h ├── crypt │ ├── crypt.c │ ├── prelude.h │ ├── sflcryp.c │ └── sflcryp.h ├── imap │ ├── IMAP_IS_NO_LONGER_HERE │ ├── README │ └── examples │ │ ├── dlimap_ping.php3 │ │ ├── espanol │ │ ├── dlimap_ping.php3 │ │ ├── dlimapbd1.php3 │ │ ├── dlimapbd2.php3 │ │ ├── dlimapbd3.php3 │ │ ├── dlimapbd4.php3 │ │ └── dlimapbody.php3 │ │ └── simple.php3 ├── informix │ ├── ifx.dsp │ ├── ifx_custom_build.dsp │ └── informix.dsp ├── log │ ├── README │ ├── log.c │ ├── log.h │ ├── log_db.c │ └── log_sql.c ├── mssql │ ├── Makefile │ ├── README │ ├── mssql.c │ ├── php3_mssql.h │ ├── sqldb.h │ └── sqlfront.h ├── phpdl.h ├── setup ├── snmp │ ├── README │ ├── php3_snmp.h │ ├── snmp.c │ └── winsnmp.c └── vmailmgr │ ├── Makefile │ ├── docs.php3 │ ├── php3_vmailmgr.c │ ├── phpvmail.cc │ └── phpvmail.h ├── doc ├── README ├── appendixes.html ├── calling-user-functions.html ├── class.dir.html ├── class.orbitenum.html ├── class.orbitobject.html ├── class.orbitstruct.html ├── config-apache.html ├── config-cgi.html ├── config-security.html ├── config-virtualhost.html ├── configuration.html ├── constants.html ├── control-structures.alternative-syntax.html ├── control-structures.break.html ├── control-structures.continue.html ├── control-structures.do.while.html ├── control-structures.else.html ├── control-structures.elseif.html ├── control-structures.for.html ├── control-structures.foreach.html ├── control-structures.html ├── control-structures.switch.html ├── control-structures.while.html ├── copyright.html ├── debugger-protocol.html ├── debugger.html ├── expressions.html ├── feature-connection-handling.html ├── feature-cookies.html ├── feature-error-handling.html ├── feature-fileupload.html ├── feature-fileupload.multiple.html ├── feature-images.html ├── feature-putsupport.html ├── feature-regexps.html ├── features.connection-handling.html ├── features.cookies.html ├── features.error-handling.html ├── features.file-upload.common-pitfalls.html ├── features.file-upload.html ├── features.file-upload.put-method.html ├── features.html ├── features.http-auth.html ├── features.images.html ├── features.persistent-connections.html ├── features.remote-files.html ├── funcref.html ├── function.abs.html ├── function.accept-connect.html ├── function.acos.html ├── function.ada-afetch.html ├── function.ada-autocommit.html ├── function.ada-close.html ├── function.ada-commit.html ├── function.ada-connect.html ├── function.ada-exec.html ├── function.ada-fetchrow.html ├── function.ada-fieldname.html ├── function.ada-fieldnum.html ├── function.ada-fieldtype.html ├── function.ada-freeresult.html ├── function.ada-numfields.html ├── function.ada-numrows.html ├── function.ada-result.html ├── function.ada-resultall.html ├── function.ada-rollback.html ├── function.addcslashes.html ├── function.addslashes.html ├── function.apache-lookup-uri.html ├── function.apache-note.html ├── function.array-count-values.html ├── function.array-diff.html ├── function.array-flip.html ├── function.array-intersect.html ├── function.array-keys.html ├── function.array-merge-recursive.html ├── function.array-merge.html ├── function.array-multisort.html ├── function.array-pad.html ├── function.array-pop.html ├── function.array-push.html ├── function.array-rand.html ├── function.array-reverse.html ├── function.array-shift.html ├── function.array-slice.html ├── function.array-splice.html ├── function.array-unique.html ├── function.array-unshift.html ├── function.array-values.html ├── function.array-walk.html ├── function.array.html ├── function.arsort.html ├── function.asin.html ├── function.asort.html ├── function.aspell-check-raw.html ├── function.aspell-check.html ├── function.aspell-new.html ├── function.aspell-suggest.html ├── function.assert-options.html ├── function.assert.html ├── function.assert_options.html ├── function.atan.html ├── function.atan2.html ├── function.base-convert.html ├── function.base64-decode.html ├── function.base64-encode.html ├── function.basename.html ├── function.bcadd.html ├── function.bccomp.html ├── function.bcdiv.html ├── function.bcmod.html ├── function.bcmul.html ├── function.bcpow.html ├── function.bcscale.html ├── function.bcsqrt.html ├── function.bcsub.html ├── function.bin2hex.html ├── function.bind.html ├── function.bindec.html ├── function.bindtextdomain.html ├── function.call-user-func.html ├── function.call-user-method.html ├── function.ceil.html ├── function.chdir.html ├── function.checkdate.html ├── function.checkdnsrr.html ├── function.chgrp.html ├── function.chmod.html ├── function.chop.html ├── function.chown.html ├── function.chr.html ├── function.chunk-split.html ├── function.class-exists.html ├── function.clearstatcache.html ├── function.close.html ├── function.closedir.html ├── function.closelog.html ├── function.com-get.html ├── function.com-invoke.html ├── function.com-load.html ├── function.com-propget.html ├── function.com-propput.html ├── function.com-propset.html ├── function.com-set.html ├── function.compact.html ├── function.connect.html ├── function.connection-aborted.html ├── function.connection-status.html ├── function.connection-timeout.html ├── function.convert-cyr-string.html ├── function.copy.html ├── function.cos.html ├── function.count-chars.html ├── function.count.html ├── function.cpdf-add-annotation.html ├── function.cpdf-add-outline.html ├── function.cpdf-arc.html ├── function.cpdf-begin-text.html ├── function.cpdf-circle.html ├── function.cpdf-clip.html ├── function.cpdf-close.html ├── function.cpdf-closepath-fill-stroke.html ├── function.cpdf-closepath-stroke.html ├── function.cpdf-closepath.html ├── function.cpdf-continue-text.html ├── function.cpdf-curveto.html ├── function.cpdf-end-text.html ├── function.cpdf-endpath.html ├── function.cpdf-fill-stroke.html ├── function.cpdf-fill.html ├── function.cpdf-finalize-page.html ├── function.cpdf-finalize.html ├── function.cpdf-global-set-document-limits.html ├── function.cpdf-import-jpeg.html ├── function.cpdf-lineto.html ├── function.cpdf-moveto.html ├── function.cpdf-newpath.html ├── function.cpdf-open.html ├── function.cpdf-output-buffer.html ├── function.cpdf-page-init.html ├── function.cpdf-place-inline-image.html ├── function.cpdf-rect.html ├── function.cpdf-restore.html ├── function.cpdf-rlineto.html ├── function.cpdf-rmoveto.html ├── function.cpdf-rotate.html ├── function.cpdf-save-to-file.html ├── function.cpdf-save.html ├── function.cpdf-scale.html ├── function.cpdf-set-char-spacing.html ├── function.cpdf-set-creator.html ├── function.cpdf-set-current-page.html ├── function.cpdf-set-font.html ├── function.cpdf-set-horiz-scaling.html ├── function.cpdf-set-keywords.html ├── function.cpdf-set-leading.html ├── function.cpdf-set-page-animation.html ├── function.cpdf-set-subject.html ├── function.cpdf-set-text-matrix.html ├── function.cpdf-set-text-pos.html ├── function.cpdf-set-text-rendering.html ├── function.cpdf-set-text-rise.html ├── function.cpdf-set-title.html ├── function.cpdf-set-word-spacing.html ├── function.cpdf-setdash.html ├── function.cpdf-setflat.html ├── function.cpdf-setgray-fill.html ├── function.cpdf-setgray-stroke.html ├── function.cpdf-setgray.html ├── function.cpdf-setlinecap.html ├── function.cpdf-setlinejoin.html ├── function.cpdf-setlinewidth.html ├── function.cpdf-setmiterlimit.html ├── function.cpdf-setrgbcolor-fill.html ├── function.cpdf-setrgbcolor-stroke.html ├── function.cpdf-setrgbcolor.html ├── function.cpdf-show-xy.html ├── function.cpdf-show.html ├── function.cpdf-stringwidth.html ├── function.cpdf-stroke.html ├── function.cpdf-text.html ├── function.cpdf-translate.html ├── function.crc32.html ├── function.create-function.html ├── function.crypt.html ├── function.curl-close.html ├── function.curl-exec.html ├── function.curl-init.html ├── function.curl-setopt.html ├── function.curl-version.html ├── function.current.html ├── function.cybercash-base64-decode.html ├── function.cybercash-base64-encode.html ├── function.cybercash-decr.html ├── function.cybercash-encr.html ├── function.date.html ├── function.dba-close.html ├── function.dba-delete.html ├── function.dba-exists.html ├── function.dba-fetch.html ├── function.dba-firstkey.html ├── function.dba-insert.html ├── function.dba-nextkey.html ├── function.dba-open.html ├── function.dba-optimize.html ├── function.dba-popen.html ├── function.dba-replace.html ├── function.dba-sync.html ├── function.dbase-add-record.html ├── function.dbase-close.html ├── function.dbase-create.html ├── function.dbase-delete-record.html ├── function.dbase-get-record-with-names.html ├── function.dbase-get-record.html ├── function.dbase-numfields.html ├── function.dbase-numrecords.html ├── function.dbase-open.html ├── function.dbase-pack.html ├── function.dbase-replace-record.html ├── function.dblist.html ├── function.dbmclose.html ├── function.dbmdelete.html ├── function.dbmexists.html ├── function.dbmfetch.html ├── function.dbmfirstkey.html ├── function.dbminsert.html ├── function.dbmnextkey.html ├── function.dbmopen.html ├── function.dbmreplace.html ├── function.dcgettext.html ├── function.debugger-off.html ├── function.debugger-on.html ├── function.decbin.html ├── function.dechex.html ├── function.decoct.html ├── function.define-syslog-variables.html ├── function.define.html ├── function.defined.html ├── function.deg2rad.html ├── function.delete.html ├── function.dgettext.html ├── function.die.html ├── function.dirname.html ├── function.diskfreespace.html ├── function.dl.html ├── function.doubleval.html ├── function.each.html ├── function.easter-date.html ├── function.easter-days.html ├── function.echo.html ├── function.empty.html ├── function.end.html ├── function.ereg-replace.html ├── function.ereg.html ├── function.eregi-replace.html ├── function.eregi.html ├── function.error-log.html ├── function.error-reporting.html ├── function.escapeshellarg.html ├── function.escapeshellcmd.html ├── function.eval.html ├── function.exec.html ├── function.exit.html ├── function.exp.html ├── function.explode.html ├── function.extension-loaded.html ├── function.extract.html ├── function.ezmlm-hash.html ├── function.fclose.html ├── function.fdf-close.html ├── function.fdf-create.html ├── function.fdf-get-file.html ├── function.fdf-get-status.html ├── function.fdf-get-value.html ├── function.fdf-next-field-name.html ├── function.fdf-open.html ├── function.fdf-save.html ├── function.fdf-set-ap.html ├── function.fdf-set-file.html ├── function.fdf-set-flags.html ├── function.fdf-set-javascript-action.html ├── function.fdf-set-opt.html ├── function.fdf-set-status.html ├── function.fdf-set-submit-form-action.html ├── function.fdf-set-value.html ├── function.feof.html ├── function.fgetc.html ├── function.fgetcsv.html ├── function.fgets.html ├── function.fgetss.html ├── function.file-exists.html ├── function.file.html ├── function.fileatime.html ├── function.filectime.html ├── function.filegroup.html ├── function.fileinode.html ├── function.filemtime.html ├── function.fileowner.html ├── function.fileperms.html ├── function.filepro-fieldcount.html ├── function.filepro-fieldname.html ├── function.filepro-fieldtype.html ├── function.filepro-fieldwidth.html ├── function.filepro-retrieve.html ├── function.filepro-rowcount.html ├── function.filepro.html ├── function.filesize.html ├── function.filetype.html ├── function.flock.html ├── function.floor.html ├── function.flush.html ├── function.fopen.html ├── function.fpassthru.html ├── function.fputs.html ├── function.fread.html ├── function.frenchtojd.html ├── function.fscanf.html ├── function.fseek.html ├── function.fsockopen.html ├── function.fstat.html ├── function.ftell.html ├── function.ftp-cdup.html ├── function.ftp-chdir.html ├── function.ftp-connect.html ├── function.ftp-delete.html ├── function.ftp-fget.html ├── function.ftp-fput.html ├── function.ftp-get.html ├── function.ftp-login.html ├── function.ftp-mdtm.html ├── function.ftp-mkdir.html ├── function.ftp-nlist.html ├── function.ftp-pasv.html ├── function.ftp-put.html ├── function.ftp-pwd.html ├── function.ftp-quit.html ├── function.ftp-rawlist.html ├── function.ftp-rename.html ├── function.ftp-rmdir.html ├── function.ftp-site.html ├── function.ftp-size.html ├── function.ftp-systype.html ├── function.ftruncate.html ├── function.func-get-arg.html ├── function.func-get-args.html ├── function.func-num-args.html ├── function.function-exists.html ├── function.fwrite.html ├── function.get-browser.html ├── function.get-cfg-var.html ├── function.get-class-methods.html ├── function.get-class-vars.html ├── function.get-class.html ├── function.get-current-user.html ├── function.get-declared-classes.html ├── function.get-extension-funcs.html ├── function.get-html-translation-table.html ├── function.get-included-files.html ├── function.get-loaded-extensions.html ├── function.get-magic-quotes-gpc.html ├── function.get-magic-quotes-runtime.html ├── function.get-meta-tags.html ├── function.get-object-vars.html ├── function.get-parent-class.html ├── function.get-required-files.html ├── function.getallheaders.html ├── function.getcwd.html ├── function.getdate.html ├── function.getenv.html ├── function.gethostbyaddr.html ├── function.gethostbyname.html ├── function.gethostbynamel.html ├── function.getimagesize.html ├── function.getlastmod.html ├── function.getmxrr.html ├── function.getmyinode.html ├── function.getmypid.html ├── function.getmyuid.html ├── function.getprotobyname.html ├── function.getprotobynumber.html ├── function.getrandmax.html ├── function.getrusage.html ├── function.getservbyname.html ├── function.getservbyport.html ├── function.gettext.html ├── function.gettimeofday.html ├── function.gettype.html ├── function.gmdate.html ├── function.gmmktime.html ├── function.gmstrftime.html ├── function.gregoriantojd.html ├── function.gzclose.html ├── function.gzcompress.html ├── function.gzeof.html ├── function.gzfile.html ├── function.gzgetc.html ├── function.gzgets.html ├── function.gzgetss.html ├── function.gzopen.html ├── function.gzpassthru.html ├── function.gzputs.html ├── function.gzread.html ├── function.gzrewind.html ├── function.gzseek.html ├── function.gztell.html ├── function.gzuncompress.html ├── function.gzwrite.html ├── function.header.html ├── function.headers-sent.html ├── function.hebrev.html ├── function.hebrevc.html ├── function.hexdec.html ├── function.highlight-file.html ├── function.highlight-string.html ├── function.htmlentities.html ├── function.htmlspecialchars.html ├── function.hw-array2objrec.html ├── function.hw-children.html ├── function.hw-childrenobj.html ├── function.hw-close.html ├── function.hw-connect.html ├── function.hw-cp.html ├── function.hw-deleteobject.html ├── function.hw-docbyanchor.html ├── function.hw-docbyanchorobj.html ├── function.hw-documentattributes.html ├── function.hw-documentbodytag.html ├── function.hw-documentcontent.html ├── function.hw-documentsetcontent.html ├── function.hw-documentsize.html ├── function.hw-edittext.html ├── function.hw-error.html ├── function.hw-errormsg.html ├── function.hw-free-document.html ├── function.hw-getanchors.html ├── function.hw-getanchorsobj.html ├── function.hw-getandlock.html ├── function.hw-getchildcoll.html ├── function.hw-getchildcollobj.html ├── function.hw-getchilddoccoll.html ├── function.hw-getchilddoccollobj.html ├── function.hw-getobject.html ├── function.hw-getobjectbyquery.html ├── function.hw-getobjectbyquerycoll.html ├── function.hw-getobjectbyquerycollobj.html ├── function.hw-getobjectbyqueryobj.html ├── function.hw-getparents.html ├── function.hw-getparentsobj.html ├── function.hw-getremote.html ├── function.hw-getremotechildren.html ├── function.hw-getsrcbydestobj.html ├── function.hw-gettext.html ├── function.hw-getusername.html ├── function.hw-identify.html ├── function.hw-incollections.html ├── function.hw-info.html ├── function.hw-inscoll.html ├── function.hw-insdoc.html ├── function.hw-insertdocument.html ├── function.hw-insertobject.html ├── function.hw-mapid.html ├── function.hw-modifyobject.html ├── function.hw-mv.html ├── function.hw-new-document.html ├── function.hw-objrec2array.html ├── function.hw-outputdocument.html ├── function.hw-pconnect.html ├── function.hw-pipedocument.html ├── function.hw-root.html ├── function.hw-unlock.html ├── function.hw-who.html ├── function.ibase-bind.html ├── function.ibase-close.html ├── function.ibase-connect.html ├── function.ibase-execute.html ├── function.ibase-fetch-object.html ├── function.ibase-fetch-row.html ├── function.ibase-free-query.html ├── function.ibase-free-result.html ├── function.ibase-num-fields.html ├── function.ibase-pconnect.html ├── function.ibase-prepare.html ├── function.ibase-query.html ├── function.ibase-timefmt.html ├── function.icap-close.html ├── function.icap-delete-event.html ├── function.icap-fetch-event.html ├── function.icap-list-alarms.html ├── function.icap-list-events.html ├── function.icap-open.html ├── function.icap-snooze.html ├── function.icap-store-event.html ├── function.ifx-affected-rows.html ├── function.ifx-blobinfile-mode.html ├── function.ifx-byteasvarchar.html ├── function.ifx-close.html ├── function.ifx-connect.html ├── function.ifx-copy-blob.html ├── function.ifx-create-blob.html ├── function.ifx-create-char.html ├── function.ifx-do.html ├── function.ifx-error.html ├── function.ifx-errormsg.html ├── function.ifx-fetch-row.html ├── function.ifx-fieldproperties.html ├── function.ifx-fieldtypes.html ├── function.ifx-free-blob.html ├── function.ifx-free-char.html ├── function.ifx-free-result.html ├── function.ifx-get-blob.html ├── function.ifx-get-char.html ├── function.ifx-getsqlca.html ├── function.ifx-htmltbl-result.html ├── function.ifx-nullformat.html ├── function.ifx-num-fields.html ├── function.ifx-num-rows.html ├── function.ifx-pconnect.html ├── function.ifx-prepare.html ├── function.ifx-query.html ├── function.ifx-textasvarchar.html ├── function.ifx-update-blob.html ├── function.ifx-update-char.html ├── function.ifxus-close-slob.html ├── function.ifxus-create-slob.html ├── function.ifxus-free-slob.html ├── function.ifxus-open-slob.html ├── function.ifxus-read-slob.html ├── function.ifxus-seek-slob.html ├── function.ifxus-tell-slob.html ├── function.ifxus-write-slob.html ├── function.ignore-user-abort.html ├── function.imagearc.html ├── function.imagechar.html ├── function.imagecharup.html ├── function.imagecolorallocate.html ├── function.imagecolorat.html ├── function.imagecolorclosest.html ├── function.imagecolordeallocate.html ├── function.imagecolorexact.html ├── function.imagecolorresolve.html ├── function.imagecolorset.html ├── function.imagecolorsforindex.html ├── function.imagecolorstotal.html ├── function.imagecolortransparent.html ├── function.imagecopy.html ├── function.imagecopyresized.html ├── function.imagecreate.html ├── function.imagecreatefromgif.html ├── function.imagecreatefromjpeg.html ├── function.imagecreatefrompng.html ├── function.imagedashedline.html ├── function.imagedestroy.html ├── function.imagefill.html ├── function.imagefilledpolygon.html ├── function.imagefilledrectangle.html ├── function.imagefilltoborder.html ├── function.imagefontheight.html ├── function.imagefontwidth.html ├── function.imagegammacorrect.html ├── function.imagegif.html ├── function.imageinterlace.html ├── function.imagejpeg.html ├── function.imageline.html ├── function.imageloadfont.html ├── function.imagepng.html ├── function.imagepolygon.html ├── function.imagepsbbox.html ├── function.imagepsencodefont.html ├── function.imagepsextendfont.html ├── function.imagepsfreefont.html ├── function.imagepsloadfont.html ├── function.imagepsslantfont.html ├── function.imagepstext.html ├── function.imagerectangle.html ├── function.imagesetpixel.html ├── function.imagestring.html ├── function.imagestringup.html ├── function.imagesx.html ├── function.imagesy.html ├── function.imagettfbbox.html ├── function.imagettftext.html ├── function.imagetypes.html ├── function.imap-8bit.html ├── function.imap-alerts.html ├── function.imap-append.html ├── function.imap-base64.html ├── function.imap-binary.html ├── function.imap-body.html ├── function.imap-check.html ├── function.imap-clearflag-full.html ├── function.imap-close.html ├── function.imap-createmailbox.html ├── function.imap-delete.html ├── function.imap-deletemailbox.html ├── function.imap-errors.html ├── function.imap-expunge.html ├── function.imap-fetch-overview.html ├── function.imap-fetchbody.html ├── function.imap-fetchheader.html ├── function.imap-fetchstructure.html ├── function.imap-getmailboxes.html ├── function.imap-getsubscribed.html ├── function.imap-header.html ├── function.imap-headerinfo.html ├── function.imap-headers.html ├── function.imap-last-error.html ├── function.imap-listmailbox.html ├── function.imap-listsubscribed.html ├── function.imap-mail-compose.html ├── function.imap-mail-copy.html ├── function.imap-mail-move.html ├── function.imap-mail.html ├── function.imap-mailboxmsginfo.html ├── function.imap-mime-header-decode.html ├── function.imap-msgno.html ├── function.imap-num-msg.html ├── function.imap-num-recent.html ├── function.imap-open.html ├── function.imap-ping.html ├── function.imap-qprint.html ├── function.imap-renamemailbox.html ├── function.imap-reopen.html ├── function.imap-rfc822-parse-adrlist.html ├── function.imap-rfc822-parse-headers.html ├── function.imap-rfc822-write-address.html ├── function.imap-scanmailbox.html ├── function.imap-search.html ├── function.imap-setflag-full.html ├── function.imap-sort.html ├── function.imap-status.html ├── function.imap-subscribe.html ├── function.imap-uid.html ├── function.imap-undelete.html ├── function.imap-unsubscribe.html ├── function.imap-utf7-decode.html ├── function.imap-utf7-encode.html ├── function.imap-utf8.html ├── function.implode.html ├── function.in-array.html ├── function.include-once.html ├── function.include.html ├── function.ini-alter.html ├── function.ini-get.html ├── function.ini-restore.html ├── function.ini-set.html ├── function.intval.html ├── function.ip2long.html ├── function.iptcparse.html ├── function.is-array.html ├── function.is-bool.html ├── function.is-dir.html ├── function.is-double.html ├── function.is-executable.html ├── function.is-file.html ├── function.is-float.html ├── function.is-int.html ├── function.is-integer.html ├── function.is-link.html ├── function.is-long.html ├── function.is-numeric.html ├── function.is-object.html ├── function.is-readable.html ├── function.is-real.html ├── function.is-resource.html ├── function.is-string.html ├── function.is-subclass-of.html ├── function.is-uploaded-file.html ├── function.is-writeable.html ├── function.isset.html ├── function.jddayofweek.html ├── function.jdmonthname.html ├── function.jdtofrench.html ├── function.jdtogregorian.html ├── function.jdtojewish.html ├── function.jdtojulian.html ├── function.jdtounix.html ├── function.jewishtojd.html ├── function.join.html ├── function.juliantojd.html ├── function.key.html ├── function.krsort.html ├── function.ksort.html ├── function.lcg-value.html ├── function.ldap-add.html ├── function.ldap-bind.html ├── function.ldap-close.html ├── function.ldap-compare.html ├── function.ldap-connect.html ├── function.ldap-count-entries.html ├── function.ldap-delete.html ├── function.ldap-dn2ufn.html ├── function.ldap-err2str.html ├── function.ldap-errno.html ├── function.ldap-error.html ├── function.ldap-explode-dn.html ├── function.ldap-first-attribute.html ├── function.ldap-first-entry.html ├── function.ldap-free-result.html ├── function.ldap-get-attributes.html ├── function.ldap-get-dn.html ├── function.ldap-get-entries.html ├── function.ldap-get-values-len.html ├── function.ldap-get-values.html ├── function.ldap-list.html ├── function.ldap-mod-add.html ├── function.ldap-mod-del.html ├── function.ldap-mod-replace.html ├── function.ldap-modify.html ├── function.ldap-next-attribute.html ├── function.ldap-next-entry.html ├── function.ldap-read.html ├── function.ldap-search.html ├── function.ldap-unbind.html ├── function.leak.html ├── function.levenshtein.html ├── function.link.html ├── function.linkinfo.html ├── function.list.html ├── function.listen.html ├── function.localtime.html ├── function.log.html ├── function.log10.html ├── function.long2ip.html ├── function.lstat.html ├── function.ltrim.html ├── function.mail.html ├── function.max.html ├── function.mcal-append-event.html ├── function.mcal-close.html ├── function.mcal-create-calendar.html ├── function.mcal-date-compare.html ├── function.mcal-date-valid.html ├── function.mcal-day-of-week.html ├── function.mcal-day-of-year.html ├── function.mcal-days-in-month.html ├── function.mcal-delete-calendar.html ├── function.mcal-delete-event.html ├── function.mcal-event-add-attribute.html ├── function.mcal-event-init.html ├── function.mcal-event-set-alarm.html ├── function.mcal-event-set-category.html ├── function.mcal-event-set-class.html ├── function.mcal-event-set-description.html ├── function.mcal-event-set-end.html ├── function.mcal-event-set-recur-daily.html ├── function.mcal-event-set-recur-monthly-mday.html ├── function.mcal-event-set-recur-monthly-wday.html ├── function.mcal-event-set-recur-none.html ├── function.mcal-event-set-recur-weekly.html ├── function.mcal-event-set-recur-yearly.html ├── function.mcal-event-set-start.html ├── function.mcal-event-set-title.html ├── function.mcal-expunge.html ├── function.mcal-fetch-current-stream-event.html ├── function.mcal-fetch-event.html ├── function.mcal-is-leap-year.html ├── function.mcal-list-alarms.html ├── function.mcal-list-events.html ├── function.mcal-next-recurrence.html ├── function.mcal-open.html ├── function.mcal-popen.html ├── function.mcal-rename-calendar.html ├── function.mcal-reopen.html ├── function.mcal-snooze.html ├── function.mcal-store-event.html ├── function.mcal-time-valid.html ├── function.mcrypt-cbc.html ├── function.mcrypt-cfb.html ├── function.mcrypt-create-iv.html ├── function.mcrypt-decrypt.html ├── function.mcrypt-ecb.html ├── function.mcrypt-enc-get-algorithms-name.html ├── function.mcrypt-enc-get-block-size.html ├── function.mcrypt-enc-get-iv-size.html ├── function.mcrypt-enc-get-key-size.html ├── function.mcrypt-enc-get-modes-name.html ├── function.mcrypt-enc-get-supported-key-sizes.html ├── function.mcrypt-enc-is-block-algorithm-mode.html ├── function.mcrypt-enc-is-block-algorithm.html ├── function.mcrypt-enc-is-block-mode.html ├── function.mcrypt-enc-self-test.html ├── function.mcrypt-encrypt.html ├── function.mcrypt-generic-end.html ├── function.mcrypt-generic-init.html ├── function.mcrypt-generic.html ├── function.mcrypt-get-block-size.html ├── function.mcrypt-get-cipher-name.html ├── function.mcrypt-get-iv-size.html ├── function.mcrypt-get-key-size.html ├── function.mcrypt-list-algorithms.html ├── function.mcrypt-list-modes.html ├── function.mcrypt-module-get-algo-block-size.html ├── function.mcrypt-module-get-algo-key-size.html ├── function.mcrypt-module-get-algo-supported-key-sizes.html ├── function.mcrypt-module-is-block-algorithm-mode.html ├── function.mcrypt-module-is-block-algorithm.html ├── function.mcrypt-module-is-block-mode.html ├── function.mcrypt-module-open.html ├── function.mcrypt-module-self-test.html ├── function.mcrypt-ofb.html ├── function.md5.html ├── function.mdecrypt-generic.html ├── function.metaphone.html ├── function.method-exists.html ├── function.mhash-count.html ├── function.mhash-get-block-size.html ├── function.mhash-get-hash-name.html ├── function.mhash.html ├── function.microtime.html ├── function.min.html ├── function.mkdir.html ├── function.mktime.html ├── function.move-uploaded-file.html ├── function.msql-affected-rows.html ├── function.msql-close.html ├── function.msql-connect.html ├── function.msql-create-db.html ├── function.msql-createdb.html ├── function.msql-data-seek.html ├── function.msql-dbname.html ├── function.msql-drop-db.html ├── function.msql-dropdb.html ├── function.msql-error.html ├── function.msql-fetch-array.html ├── function.msql-fetch-field.html ├── function.msql-fetch-object.html ├── function.msql-fetch-row.html ├── function.msql-field-seek.html ├── function.msql-fieldflags.html ├── function.msql-fieldlen.html ├── function.msql-fieldname.html ├── function.msql-fieldtable.html ├── function.msql-fieldtype.html ├── function.msql-free-result.html ├── function.msql-freeresult.html ├── function.msql-list-dbs.html ├── function.msql-list-fields.html ├── function.msql-list-tables.html ├── function.msql-listdbs.html ├── function.msql-listfields.html ├── function.msql-listtables.html ├── function.msql-num-fields.html ├── function.msql-num-rows.html ├── function.msql-numfields.html ├── function.msql-numrows.html ├── function.msql-pconnect.html ├── function.msql-query.html ├── function.msql-regcase.html ├── function.msql-result.html ├── function.msql-select-db.html ├── function.msql-selectdb.html ├── function.msql-tablename.html ├── function.msql.html ├── function.mssql-affected-rows.html ├── function.mssql-close.html ├── function.mssql-connect.html ├── function.mssql-data-seek.html ├── function.mssql-fetch-array.html ├── function.mssql-fetch-field.html ├── function.mssql-fetch-object.html ├── function.mssql-fetch-row.html ├── function.mssql-field-length.html ├── function.mssql-field-name.html ├── function.mssql-field-seek.html ├── function.mssql-field-type.html ├── function.mssql-free-result.html ├── function.mssql-get-last-message.html ├── function.mssql-min-error-severity.html ├── function.mssql-min-message-severity.html ├── function.mssql-num-fields.html ├── function.mssql-num-rows.html ├── function.mssql-pconnect.html ├── function.mssql-query.html ├── function.mssql-result.html ├── function.mssql-select-db.html ├── function.mt-getrandmax.html ├── function.mt-rand.html ├── function.mt-srand.html ├── function.mysql-affected-rows.html ├── function.mysql-change-user.html ├── function.mysql-close.html ├── function.mysql-connect.html ├── function.mysql-create-db.html ├── function.mysql-data-seek.html ├── function.mysql-db-name.html ├── function.mysql-db-query.html ├── function.mysql-drop-db.html ├── function.mysql-errno.html ├── function.mysql-error.html ├── function.mysql-fetch-array.html ├── function.mysql-fetch-assoc.html ├── function.mysql-fetch-field.html ├── function.mysql-fetch-lengths.html ├── function.mysql-fetch-object.html ├── function.mysql-fetch-row.html ├── function.mysql-field-flags.html ├── function.mysql-field-len.html ├── function.mysql-field-name.html ├── function.mysql-field-seek.html ├── function.mysql-field-table.html ├── function.mysql-field-type.html ├── function.mysql-free-result.html ├── function.mysql-insert-id.html ├── function.mysql-list-dbs.html ├── function.mysql-list-fields.html ├── function.mysql-list-tables.html ├── function.mysql-num-fields.html ├── function.mysql-num-rows.html ├── function.mysql-pconnect.html ├── function.mysql-query.html ├── function.mysql-result.html ├── function.mysql-select-db.html ├── function.mysql-tablename.html ├── function.natcasesort.html ├── function.natsort.html ├── function.next.html ├── function.nl2br.html ├── function.number-format.html ├── function.ob-end-clean.html ├── function.ob-end-flush.html ├── function.ob-get-contents.html ├── function.ob-get-length.html ├── function.ob-implicit-flush.html ├── function.ob-start.html ├── function.ocibindbyname.html ├── function.ocicolumnisnull.html ├── function.ocicolumnname.html ├── function.ocicolumnsize.html ├── function.ocicolumntype.html ├── function.ocicommit.html ├── function.ocidefinebyname.html ├── function.ocierror.html ├── function.ociexecute.html ├── function.ocifetch.html ├── function.ocifetchinto.html ├── function.ocifetchstatement.html ├── function.ocifreecursor.html ├── function.ocifreedesc.html ├── function.ocifreestatement.html ├── function.ociinternaldebug.html ├── function.ocilogoff.html ├── function.ocilogon.html ├── function.ocinewcursor.html ├── function.ocinewdescriptor.html ├── function.ocinlogon.html ├── function.ocinumcols.html ├── function.ocinumrows.html ├── function.ociparse.html ├── function.ociplogon.html ├── function.ociresult.html ├── function.ocirollback.html ├── function.ocirowcount.html ├── function.ociserverversion.html ├── function.ocistatementtype.html ├── function.octdec.html ├── function.odbc-autocommit.html ├── function.odbc-binmode.html ├── function.odbc-close-all.html ├── function.odbc-close.html ├── function.odbc-columnprivileges.html ├── function.odbc-columns.html ├── function.odbc-commit.html ├── function.odbc-connect.html ├── function.odbc-cursor.html ├── function.odbc-do.html ├── function.odbc-exec.html ├── function.odbc-execute.html ├── function.odbc-fetch-into.html ├── function.odbc-fetch-row.html ├── function.odbc-field-len.html ├── function.odbc-field-name.html ├── function.odbc-field-num.html ├── function.odbc-field-precision.html ├── function.odbc-field-scale.html ├── function.odbc-field-type.html ├── function.odbc-foreignkeys.html ├── function.odbc-free-result.html ├── function.odbc-gettypeinfo.html ├── function.odbc-longreadlen.html ├── function.odbc-num-fields.html ├── function.odbc-num-rows.html ├── function.odbc-pconnect.html ├── function.odbc-prepare.html ├── function.odbc-primarykeys.html ├── function.odbc-procedurecolumns.html ├── function.odbc-procedures.html ├── function.odbc-result-all.html ├── function.odbc-result.html ├── function.odbc-rollback.html ├── function.odbc-setoption.html ├── function.odbc-specialcolumns.html ├── function.odbc-statistics.html ├── function.odbc-tableprivileges.html ├── function.odbc-tables.html ├── function.opendir.html ├── function.openlog.html ├── function.ora-bind.html ├── function.ora-close.html ├── function.ora-columnname.html ├── function.ora-columnsize.html ├── function.ora-columntype.html ├── function.ora-commit.html ├── function.ora-commitoff.html ├── function.ora-commiton.html ├── function.ora-do.html ├── function.ora-error.html ├── function.ora-errorcode.html ├── function.ora-exec.html ├── function.ora-fetch-into.html ├── function.ora-fetch.html ├── function.ora-getcolumn.html ├── function.ora-logoff.html ├── function.ora-logon.html ├── function.ora-numcols.html ├── function.ora-numrows.html ├── function.ora-open.html ├── function.ora-parse.html ├── function.ora-plogon.html ├── function.ora-rollback.html ├── function.ord.html ├── function.pack.html ├── function.parse-str.html ├── function.parse-url.html ├── function.passthru.html ├── function.pclose.html ├── function.pdf-add-annotation.html ├── function.pdf-add-outline.html ├── function.pdf-arc.html ├── function.pdf-begin-page.html ├── function.pdf-circle.html ├── function.pdf-clip.html ├── function.pdf-close-image.html ├── function.pdf-close.html ├── function.pdf-closepath-fill-stroke.html ├── function.pdf-closepath-stroke.html ├── function.pdf-closepath.html ├── function.pdf-continue-text.html ├── function.pdf-curveto.html ├── function.pdf-end-page.html ├── function.pdf-endpath.html ├── function.pdf-execute-image.html ├── function.pdf-fill-stroke.html ├── function.pdf-fill.html ├── function.pdf-get-image-height.html ├── function.pdf-get-image-width.html ├── function.pdf-get-info.html ├── function.pdf-get-parameter.html ├── function.pdf-get-value.html ├── function.pdf-lineto.html ├── function.pdf-moveto.html ├── function.pdf-open-gif.html ├── function.pdf-open-image-file.html ├── function.pdf-open-jpeg.html ├── function.pdf-open-memory-image.html ├── function.pdf-open-png.html ├── function.pdf-open-tiff.html ├── function.pdf-open.html ├── function.pdf-place-image.html ├── function.pdf-put-image.html ├── function.pdf-rect.html ├── function.pdf-restore.html ├── function.pdf-rotate.html ├── function.pdf-save.html ├── function.pdf-scale.html ├── function.pdf-set-border-color.html ├── function.pdf-set-border-dash.html ├── function.pdf-set-border-style.html ├── function.pdf-set-char-spacing.html ├── function.pdf-set-duration.html ├── function.pdf-set-font.html ├── function.pdf-set-horiz-scaling.html ├── function.pdf-set-info-author.html ├── function.pdf-set-info-creator.html ├── function.pdf-set-info-keywords.html ├── function.pdf-set-info-subject.html ├── function.pdf-set-info-title.html ├── function.pdf-set-info.html ├── function.pdf-set-leading.html ├── function.pdf-set-parameter.html ├── function.pdf-set-text-matrix.html ├── function.pdf-set-text-pos.html ├── function.pdf-set-text-rendering.html ├── function.pdf-set-text-rise.html ├── function.pdf-set-transition.html ├── function.pdf-set-value.html ├── function.pdf-set-word-spacing.html ├── function.pdf-setdash.html ├── function.pdf-setflat.html ├── function.pdf-setgray-fill.html ├── function.pdf-setgray-stroke.html ├── function.pdf-setgray.html ├── function.pdf-setlinecap.html ├── function.pdf-setlinejoin.html ├── function.pdf-setlinewidth.html ├── function.pdf-setmiterlimit.html ├── function.pdf-setrgbcolor-fill.html ├── function.pdf-setrgbcolor-stroke.html ├── function.pdf-setrgbcolor.html ├── function.pdf-show-boxed.html ├── function.pdf-show-xy.html ├── function.pdf-show.html ├── function.pdf-skew.html ├── function.pdf-stringwidth.html ├── function.pdf-stroke.html ├── function.pdf-translate.html ├── function.pfpro-cleanup.html ├── function.pfpro-init.html ├── function.pfpro-process-raw.html ├── function.pfpro-process.html ├── function.pfpro-version.html ├── function.pfsockopen.html ├── function.pg-client-encoding.html ├── function.pg-clientencoding.html ├── function.pg-close.html ├── function.pg-cmdtuples.html ├── function.pg-connect.html ├── function.pg-dbname.html ├── function.pg-end-copy.html ├── function.pg-errormessage.html ├── function.pg-exec.html ├── function.pg-fetch-array.html ├── function.pg-fetch-object.html ├── function.pg-fetch-row.html ├── function.pg-fieldisnull.html ├── function.pg-fieldname.html ├── function.pg-fieldnum.html ├── function.pg-fieldprtlen.html ├── function.pg-fieldsize.html ├── function.pg-fieldtype.html ├── function.pg-freeresult.html ├── function.pg-getlastoid.html ├── function.pg-host.html ├── function.pg-loclose.html ├── function.pg-locreate.html ├── function.pg-loexport.html ├── function.pg-loimport.html ├── function.pg-loopen.html ├── function.pg-loread.html ├── function.pg-loreadall.html ├── function.pg-lounlink.html ├── function.pg-lowrite.html ├── function.pg-numfields.html ├── function.pg-numrows.html ├── function.pg-options.html ├── function.pg-pconnect.html ├── function.pg-port.html ├── function.pg-put-line.html ├── function.pg-result.html ├── function.pg-set-client-encoding.html ├── function.pg-setclientencoding.html ├── function.pg-trace.html ├── function.pg-tty.html ├── function.pg-untrace.html ├── function.php-logo-guid.html ├── function.php-sapi-name.html ├── function.php-uname.html ├── function.phpcredits.html ├── function.phpinfo.html ├── function.phpversion.html ├── function.pi.html ├── function.popen.html ├── function.pos.html ├── function.posix-ctermid.html ├── function.posix-getcwd.html ├── function.posix-getegid.html ├── function.posix-geteuid.html ├── function.posix-getgid.html ├── function.posix-getgrgid.html ├── function.posix-getgrnam.html ├── function.posix-getgroups.html ├── function.posix-getlogin.html ├── function.posix-getpgid.html ├── function.posix-getpgrp.html ├── function.posix-getpid.html ├── function.posix-getppid.html ├── function.posix-getpwnam.html ├── function.posix-getpwuid.html ├── function.posix-getrlimit.html ├── function.posix-getsid.html ├── function.posix-getuid.html ├── function.posix-isatty.html ├── function.posix-kill.html ├── function.posix-mkfifo.html ├── function.posix-setgid.html ├── function.posix-setpgid.html ├── function.posix-setsid.html ├── function.posix-setuid.html ├── function.posix-times.html ├── function.posix-ttyname.html ├── function.posix-uname.html ├── function.pow.html ├── function.preg-grep.html ├── function.preg-match-all.html ├── function.preg-match.html ├── function.preg-quote.html ├── function.preg-replace.html ├── function.preg-split.html ├── function.prev.html ├── function.print-r.html ├── function.print.html ├── function.printf.html ├── function.pspell-add-to-personal.html ├── function.pspell-add-to-session.html ├── function.pspell-check.html ├── function.pspell-clear-session.html ├── function.pspell-config-create.html ├── function.pspell-config-ignore.html ├── function.pspell-config-mode.html ├── function.pspell-config-personal.html ├── function.pspell-config-repl.html ├── function.pspell-config-runtogether.html ├── function.pspell-config-save-repl.html ├── function.pspell-new-config.html ├── function.pspell-new-personal.html ├── function.pspell-new.html ├── function.pspell-save-wordlist.html ├── function.pspell-store-replacement.html ├── function.pspell-suggest.html ├── function.putenv.html ├── function.quoted-printable-decode.html ├── function.quotemeta.html ├── function.rad2deg.html ├── function.rand.html ├── function.range.html ├── function.rawurldecode.html ├── function.rawurlencode.html ├── function.read-exif-data.html ├── function.readdir.html ├── function.readfile.html ├── function.readgzfile.html ├── function.readline-add-history.html ├── function.readline-clear-history.html ├── function.readline-completion-function.html ├── function.readline-info.html ├── function.readline-list-history.html ├── function.readline-read-history.html ├── function.readline-write-history.html ├── function.readline.html ├── function.readlink.html ├── function.realpath.html ├── function.recode-file.html ├── function.recode-string.html ├── function.recode.html ├── function.register-shutdown-function.html ├── function.rename.html ├── function.require-once.html ├── function.require.html ├── function.reset.html ├── function.restore-error-handler.html ├── function.rewind.html ├── function.rewinddir.html ├── function.rmdir.html ├── function.round.html ├── function.rsort.html ├── function.rtrim.html ├── function.satellite_caught_exception.html ├── function.satellite_exception_id.html ├── function.satellite_exception_value.html ├── function.sem-acquire.html ├── function.sem-get.html ├── function.sem-release.html ├── function.serialize.html ├── function.session-cache-limiter.html ├── function.session-decode.html ├── function.session-destroy.html ├── function.session-encode.html ├── function.session-get-cookie-params.html ├── function.session-id.html ├── function.session-is-registered.html ├── function.session-module-name.html ├── function.session-name.html ├── function.session-register.html ├── function.session-save-path.html ├── function.session-set-cookie-params.html ├── function.session-set-save-handler.html ├── function.session-start.html ├── function.session-unregister.html ├── function.session-unset.html ├── function.set-error-handler.html ├── function.set-file-buffer.html ├── function.set-magic-quotes-runtime.html ├── function.set-socket-blocking.html ├── function.set-time-limit.html ├── function.setcookie.html ├── function.setlocale.html ├── function.settype.html ├── function.shm-attach.html ├── function.shm-detach.html ├── function.shm-get-var.html ├── function.shm-put-var.html ├── function.shm-remove-var.html ├── function.shm-remove.html ├── function.shm_close.html ├── function.shm_delete.html ├── function.shm_open.html ├── function.shm_read.html ├── function.shm_write.html ├── function.show-source.html ├── function.shuffle.html ├── function.similar-text.html ├── function.sin.html ├── function.size.html ├── function.sizeof.html ├── function.sleep.html ├── function.snmp-get-quick-print.html ├── function.snmp-set-quick-print.html ├── function.snmpget.html ├── function.snmpset.html ├── function.snmpwalk.html ├── function.snmpwalkoid.html ├── function.socket-get-status.html ├── function.socket-set-timeout.html ├── function.socket.html ├── function.solid-close.html ├── function.solid-connect.html ├── function.solid-exec.html ├── function.solid-fetchrow.html ├── function.solid-fieldname.html ├── function.solid-fieldnum.html ├── function.solid-freeresult.html ├── function.solid-numfields.html ├── function.solid-numrows.html ├── function.solid-result.html ├── function.sort.html ├── function.soundex.html ├── function.split.html ├── function.spliti.html ├── function.sprintf.html ├── function.sql-regcase.html ├── function.sqrt.html ├── function.srand.html ├── function.sscanf.html ├── function.stat.html ├── function.str-pad.html ├── function.str-repeat.html ├── function.str-replace.html ├── function.strcasecmp.html ├── function.strchr.html ├── function.strcmp.html ├── function.strcspn.html ├── function.strerror.html ├── function.strftime.html ├── function.strip-tags.html ├── function.stripcslashes.html ├── function.stripslashes.html ├── function.stristr.html ├── function.strlen.html ├── function.strnatcasecmp.html ├── function.strnatcmp.html ├── function.strncmp.html ├── function.strpos.html ├── function.strrchr.html ├── function.strrev.html ├── function.strrpos.html ├── function.strspn.html ├── function.strstr.html ├── function.strtok.html ├── function.strtolower.html ├── function.strtotime.html ├── function.strtoupper.html ├── function.strtr.html ├── function.strval.html ├── function.substr-count.html ├── function.substr-replace.html ├── function.substr.html ├── function.swf-actiongeturl.html ├── function.swf-actiongotoframe.html ├── function.swf-actiongotolabel.html ├── function.swf-actionnextframe.html ├── function.swf-actionplay.html ├── function.swf-actionprevframe.html ├── function.swf-actionsettarget.html ├── function.swf-actionstop.html ├── function.swf-actiontogglequality.html ├── function.swf-actionwaitforframe.html ├── function.swf-addbuttonrecord.html ├── function.swf-addcolor.html ├── function.swf-closefile.html ├── function.swf-definebitmap.html ├── function.swf-definefont.html ├── function.swf-defineline.html ├── function.swf-definepoly.html ├── function.swf-definerect.html ├── function.swf-definetext.html ├── function.swf-endbutton.html ├── function.swf-enddoaction.html ├── function.swf-endshape.html ├── function.swf-endsymbol.html ├── function.swf-fontsize.html ├── function.swf-fontslant.html ├── function.swf-fonttracking.html ├── function.swf-getbitmapinfo.html ├── function.swf-getfontinfo.html ├── function.swf-getframe.html ├── function.swf-labelframe.html ├── function.swf-lookat.html ├── function.swf-modifyobject.html ├── function.swf-mulcolor.html ├── function.swf-nextid.html ├── function.swf-oncondition.html ├── function.swf-openfile.html ├── function.swf-ortho.html ├── function.swf-ortho2.html ├── function.swf-perspective.html ├── function.swf-placeobject.html ├── function.swf-polarview.html ├── function.swf-popmatrix.html ├── function.swf-posround.html ├── function.swf-pushmatrix.html ├── function.swf-removeobject.html ├── function.swf-rotate.html ├── function.swf-scale.html ├── function.swf-setfont.html ├── function.swf-setframe.html ├── function.swf-shapearc.html ├── function.swf-shapecurveto.html ├── function.swf-shapecurveto3.html ├── function.swf-shapefillbitmapclip.html ├── function.swf-shapefillbitmaptile.html ├── function.swf-shapefilloff.html ├── function.swf-shapefillsolid.html ├── function.swf-shapelinesold.html ├── function.swf-shapelineto.html ├── function.swf-shapemoveto.html ├── function.swf-showframe.html ├── function.swf-startbutton.html ├── function.swf-startdoaction.html ├── function.swf-startshape.html ├── function.swf-startsymbol.html ├── function.swf-textwidth.html ├── function.swf-translate.html ├── function.swf-viewport.html ├── function.sybase-affected-rows.html ├── function.sybase-close.html ├── function.sybase-connect.html ├── function.sybase-data-seek.html ├── function.sybase-fetch-array.html ├── function.sybase-fetch-field.html ├── function.sybase-fetch-object.html ├── function.sybase-fetch-row.html ├── function.sybase-field-seek.html ├── function.sybase-free-result.html ├── function.sybase-num-fields.html ├── function.sybase-num-rows.html ├── function.sybase-pconnect.html ├── function.sybase-query.html ├── function.sybase-result.html ├── function.sybase-select-db.html ├── function.symlink.html ├── function.syslog.html ├── function.system.html ├── function.tan.html ├── function.tempnam.html ├── function.textdomain.html ├── function.time.html ├── function.tmpfile.html ├── function.touch.html ├── function.trigger-error.html ├── function.trim.html ├── function.uasort.html ├── function.ucfirst.html ├── function.ucwords.html ├── function.uksort.html ├── function.umask.html ├── function.uniqid.html ├── function.unixtojd.html ├── function.unlink.html ├── function.unpack.html ├── function.unserialize.html ├── function.unset.html ├── function.urldecode.html ├── function.urlencode.html ├── function.user-error.html ├── function.usleep.html ├── function.usort.html ├── function.utf8-decode.html ├── function.utf8-encode.html ├── function.var-dump.html ├── function.virtual.html ├── function.vm-addalias.html ├── function.vm-adduser.html ├── function.vm-delalias.html ├── function.vm-deluser.html ├── function.vm-passwd.html ├── function.wddx-add-vars.html ├── function.wddx-deserialize.html ├── function.wddx-packet-end.html ├── function.wddx-packet-start.html ├── function.wddx-serialize-value.html ├── function.wddx-serialize-vars.html ├── function.wordwrap.html ├── function.xml-error-string.html ├── function.xml-get-current-byte-index.html ├── function.xml-get-current-column-number.html ├── function.xml-get-current-line-number.html ├── function.xml-get-error-code.html ├── function.xml-parse-into-struct.html ├── function.xml-parse.html ├── function.xml-parser-create.html ├── function.xml-parser-free.html ├── function.xml-parser-get-option.html ├── function.xml-parser-set-option.html ├── function.xml-set-character-data-handler.html ├── function.xml-set-default-handler.html ├── function.xml-set-element-handler.html ├── function.xml-set-external-entity-ref-handler.html ├── function.xml-set-notation-decl-handler.html ├── function.xml-set-object.html ├── function.xml-set-processing-instruction-handler.html ├── function.xml-set-unparsed-entity-decl-handler.html ├── function.xmldoc.html ├── function.xmldocfile.html ├── function.xmltree.html ├── function.yaz-addinfo.html ├── function.yaz-close.html ├── function.yaz-connect.html ├── function.yaz-errno.html ├── function.yaz-error.html ├── function.yaz-hits.html ├── function.yaz-range.html ├── function.yaz-record.html ├── function.yaz-search.html ├── function.yaz-syntax.html ├── function.yaz-wait.html ├── function.yp-err-string.html ├── function.yp-errno.html ├── function.yp-first.html ├── function.yp-get-default-domain.html ├── function.yp-master.html ├── function.yp-match.html ├── function.yp-next.html ├── function.yp-order.html ├── function.zend-logo-guid.html ├── functions.arguments.html ├── functions.html ├── functions.old-syntax.html ├── functions.returning-values.html ├── functions.variable-functions.html ├── getting-started.html ├── install-problems.html ├── install-security.html ├── install-unix.html ├── install-windows95-nt.html ├── install.configure.html ├── install.unix.html ├── installation.html ├── intro-history.html ├── intro-whatcando.html ├── introduction.html ├── keyword.class.html ├── keyword.function.html ├── keyword.function.return.html ├── keyword.old-function.html ├── lang-syntax.html ├── langref.html ├── language.basic-syntax.comments.html ├── language.basic-syntax.html ├── language.basic-syntax.instruction-separation.html ├── language.constants.html ├── language.expressions.html ├── language.oop.html ├── language.operators.assignment.html ├── language.operators.bitwise.html ├── language.operators.comparison.html ├── language.operators.errorcontrol.html ├── language.operators.execution.html ├── language.operators.html ├── language.operators.increment.html ├── language.operators.logical.html ├── language.operators.precedence.html ├── language.operators.string.html ├── language.references.arent.html ├── language.references.html ├── language.references.return.html ├── language.references.spot.html ├── language.references.unset.html ├── language.references.whatdo.html ├── language.types.array.html ├── language.types.double.html ├── language.types.html ├── language.types.object.html ├── language.types.string.html ├── language.types.type-juggling.html ├── language.variables.external.html ├── language.variables.html ├── language.variables.predefined.html ├── language.variables.scope.html ├── language.variables.variable.html ├── ln39.html ├── manual.html ├── manual.php3 ├── migration-booleval.html ├── migration-errors.html ├── migration-expr.html ├── migration-if-endif.html ├── migration-other.html ├── migration-startendtags.html ├── migration-truefalse.html ├── migration-while.html ├── migration.html ├── oop.html ├── operators.html ├── pattern.options.html ├── pcre.pattern.modifiers.html ├── pcre.pattern.options.html ├── pcre.pattern.syntax.html ├── phpdevel-errors.html ├── phpdevel-hhgtpi.html ├── phpdevel.html ├── preface.html ├── r5601.html ├── r5607.html ├── r5686.html ├── r5819.html ├── r6529.html ├── r6628.html ├── r6669.html ├── r6691.html ├── r6720.html ├── r6749.html ├── r6778.html ├── r6799.html ├── r6834.html ├── r6855.html ├── r6891.html ├── r6927.html ├── r6948.html ├── r6982.html ├── ref.adabas.html ├── ref.apache.html ├── ref.array.html ├── ref.aspell.html ├── ref.bc.html ├── ref.calendar.html ├── ref.ccvs.html ├── ref.classobj.html ├── ref.com.html ├── ref.cpdf.html ├── ref.curl.html ├── ref.cybercash.html ├── ref.datetime.html ├── ref.dba.html ├── ref.dbase.html ├── ref.dbm.html ├── ref.dir.html ├── ref.dl.html ├── ref.domxml.html ├── ref.errorfunc.html ├── ref.exec.html ├── ref.fdf.html ├── ref.filepro.html ├── ref.filesystem.html ├── ref.ftp.html ├── ref.funchand.html ├── ref.gettext.html ├── ref.http.html ├── ref.hyperwave.html ├── ref.ibase.html ├── ref.icap.html ├── ref.ifx.html ├── ref.image.html ├── ref.imap.html ├── ref.info.html ├── ref.ldap.html ├── ref.mail.html ├── ref.math.html ├── ref.mcal.html ├── ref.mcrypt.html ├── ref.mhash.html ├── ref.misc.html ├── ref.msql.html ├── ref.mssql.html ├── ref.mysql.html ├── ref.network.html ├── ref.nis.html ├── ref.oci8.html ├── ref.odbc.html ├── ref.oracle.html ├── ref.outcontrol.html ├── ref.pcre.html ├── ref.pdf.html ├── ref.pfpro.html ├── ref.pgsql.html ├── ref.posix.html ├── ref.pspell.html ├── ref.readline.html ├── ref.recode.html ├── ref.regex.html ├── ref.satellite.html ├── ref.sem.html ├── ref.session.html ├── ref.shmop.html ├── ref.snmp.html ├── ref.sockets.html ├── ref.solid.html ├── ref.strings.html ├── ref.swf.html ├── ref.sybase.html ├── ref.url.html ├── ref.var.html ├── ref.vmailmgr.html ├── ref.wddx.html ├── ref.xml.html ├── ref.yaz.html ├── ref.zlib.html ├── security.apache.html ├── security.html ├── types.html ├── variables.html └── x2176.html ├── examples ├── README.logging ├── album │ ├── include │ │ ├── auth.inc │ │ ├── footer.inc │ │ └── header.inc │ ├── index.php3 │ ├── ins.sh │ ├── photos.sql │ ├── upload.php3 │ └── users.sql ├── date.php3 ├── dir.php3 ├── log-db.php3 ├── log-footer.php3 ├── log-header.php3 └── log-test.php3 ├── extra ├── cyberlib │ ├── CHANGES │ ├── COPYING │ ├── INSTALL │ ├── README │ ├── cyberlib.php3 │ └── test.php3 ├── gd │ ├── README │ ├── bdf2gdfont.in │ └── helvO10.bdf ├── icons │ ├── README │ ├── php2.gif │ ├── php3.gif │ ├── phpi.gif │ └── phps.gif ├── phpwatch │ ├── phpwatch.c │ └── phpwatch.dsp ├── rgd.zip └── uodbc │ ├── odbc_codbc.inc │ ├── odbc_db2.inc │ ├── odbc_iodbc.inc │ ├── odbc_openlink.inc │ ├── odbc_solid.inc │ ├── odbc_velocis.inc │ └── odbc_wodbc.inc ├── footer ├── fopen-wrappers.c ├── fopen-wrappers.h ├── funclist.php3 ├── functions ├── COM.c ├── DList.h ├── adabasd.c ├── adabasd.h ├── apache.c ├── aspell.c ├── base64.c ├── base64.h ├── basic_functions.c ├── basic_functions.h ├── bcmath.c ├── browscap.c ├── cpdf.c ├── crypt.c ├── cyr_convert.c ├── cyr_convert.h ├── datetime.c ├── datetime.h ├── dav.c ├── db.c ├── db.h ├── dba.c ├── dba_cdb.c ├── dba_db2.c ├── dba_dbm.c ├── dba_gdbm.c ├── dba_ndbm.c ├── dbase.c ├── dbase.h ├── debug.h ├── dir.c ├── dl.c ├── dl.h ├── dlist.c ├── dns.c ├── dns.h ├── exec.c ├── exec.h ├── fdf.c ├── fhttpd.c ├── file.c ├── file.h ├── filepro.c ├── filepro.h ├── filestat.c ├── formatted_print.c ├── fsock.c ├── fsock.h ├── ftp.c ├── ftp.h ├── gd.c ├── gdcache.c ├── gdcache.h ├── gdttf.c ├── gdttf.h ├── gettext.c ├── head.c ├── head.h ├── hg_comm.c ├── hg_comm.h ├── html.c ├── html.h ├── hw.c ├── hw.h ├── hw_error.h ├── ifx.ec ├── image.c ├── image.h ├── imap.c ├── imap.h ├── imsp.c ├── imsp.h ├── info.c ├── info.h ├── interbase.c ├── iptc.c ├── lcg.c ├── ldap.c ├── levenshtein.c ├── link.c ├── magick.c ├── mail.c ├── math.c ├── mcrypt.c ├── md5.c ├── md5.h ├── mhash.c ├── microtime.c ├── microtime.h ├── mime.c ├── mime.h ├── msql.c ├── mysql.c ├── number.c ├── number.h ├── oci8.c ├── oracle.c ├── oracle.h ├── oracle_hack.c ├── pack.c ├── pack.h ├── pageinfo.c ├── pageinfo.h ├── parsedate.c ├── parsedate.h ├── parsedate.output ├── parsedate.y ├── pcre.c ├── pdf.c ├── pgsql.c ├── php3_COM.h ├── php3_aspell.h ├── php3_bcmath.h ├── php3_browscap.h ├── php3_cdb.h ├── php3_cpdf.h ├── php3_dav.h ├── php3_db2.h ├── php3_dba.h ├── php3_dbm.h ├── php3_dir.h ├── php3_fdf.h ├── php3_filestat.h ├── php3_gd.h ├── php3_gdbm.h ├── php3_gettext.h ├── php3_global.h ├── php3_ifx.h ├── php3_interbase.h ├── php3_iptc.h ├── php3_ldap.h ├── php3_link.h ├── php3_magick.h ├── php3_mail.h ├── php3_mcal.c ├── php3_mcal.h ├── php3_mckcrypt.c ├── php3_mckcrypt.h ├── php3_msql.h ├── php3_mysql.h ├── php3_ndbm.h ├── php3_oci8.h ├── php3_pcre.h ├── php3_pdf.h ├── php3_pgsql.h ├── php3_posix.h ├── php3_recode.h ├── php3_snmp.h ├── php3_solid.h ├── php3_string.h ├── php3_sybase-ct.h ├── php3_sybase.h ├── php3_syslog.h ├── php3_sysvsem.h ├── php3_sysvshm.h ├── php3_unified_odbc.h ├── php3_var.h ├── php3_velocis.h ├── php3_wddx.h ├── php3_wddx_a.h ├── php3_xml.h ├── php3_yp.h ├── php3_zlib.h ├── php_ftp.c ├── php_ftp.h ├── php_lcg.h ├── php_mcrypt.h ├── php_mhash.h ├── phpdir.h ├── phpmath.h ├── posix.c ├── post.c ├── post.h ├── quot_print.c ├── quot_print.h ├── rand.c ├── recode.c ├── reg.c ├── reg.h ├── rpc.c ├── rpc_protocol.c ├── rpc_protocol.h ├── snmp.c ├── solid.c ├── soundex.c ├── string.c ├── sybase-ct.c ├── sybase.c ├── syslog.c ├── sysvsem.c ├── sysvshm.c ├── type.c ├── type.h ├── unified_odbc.c ├── uniqid.c ├── uniqid.h ├── url.c ├── url.h ├── var.c ├── velocis.c ├── wddx.c ├── wddx_a.c ├── xml.c ├── yp.c └── zlib.c ├── getopt.c ├── header ├── highlight.c ├── highlight.h ├── install-sh ├── internal_functions.c ├── internal_functions.h ├── internal_functions_registry.h ├── language-parser.tab.c ├── language-parser.tab.h ├── language-parser.y ├── language-scanner.c ├── language-scanner.h ├── language-scanner.lex ├── libphp3.module.in ├── list.c ├── ltconfig ├── ltmain.sh ├── main.c ├── main.h ├── makedist ├── mod_php3.c ├── mod_php3.exp ├── mod_php3.h ├── modules.h ├── operators.c ├── operators.h ├── pcrelib ├── ChangeLog ├── LICENCE ├── Makefile.in ├── README ├── RunTest ├── Tech.Notes ├── chartables.c ├── dftables ├── dftables.c ├── get.c ├── internal.h ├── maketables.c ├── pcre.3 ├── pcre.c ├── pcre.h ├── pcrelib.dsp ├── pcreposix.3 ├── pcreposix.c ├── pcreposix.h ├── pcretest.c ├── perltest ├── pgrep.1 ├── pgrep.c ├── study.c ├── testinput1 ├── testinput2 ├── testinput3 ├── testinput4 ├── testoutput1 ├── testoutput2 ├── testoutput3 ├── testoutput4 └── testtry ├── php.h ├── php.map ├── php3.dsw ├── php3.ini-dist ├── php3_debugger.h ├── php3_hash.c ├── php3_hash.h ├── php3_list.h ├── php3_realpath.c ├── php3_realpath.h ├── php3_sprintf.c ├── php3_threads.c ├── php3_threads.h ├── php3extra.dsw ├── php_alloc.h ├── php_compat.c ├── php_compat.h ├── php_getopt.h ├── php_version.h ├── press-release-3.0.txt ├── regex ├── COPYRIGHT ├── Makefile.in ├── README ├── WHATSNEW ├── cclass.h ├── cname.h ├── debug.c ├── debug.ih ├── engine.c ├── engine.ih ├── main.c ├── main.ih ├── mkh ├── regcomp.c ├── regcomp.ih ├── regerror.c ├── regerror.ih ├── regex.3 ├── regex.7 ├── regex.dsp ├── regex.dsw ├── regex.h ├── regex2.h ├── regexec.c ├── regfree.c ├── split.c ├── tests └── utils.h ├── regtests ├── README ├── TEST ├── ary │ ├── 001.php3t │ ├── 002.php3t │ ├── 002.phtml │ ├── 003.php3t │ ├── 003.phtml │ ├── 004.php3t │ ├── 004.phtml │ ├── 005.php3t │ ├── 005.phtml │ ├── 006.php3t │ ├── 006.phtml │ ├── 007.php3t │ ├── 007.phtml │ ├── 008.php3t │ ├── 008.phtml │ ├── 009.php3t │ ├── 009.phtml │ ├── 010.php3t │ ├── 010.phtml │ ├── 011.php3t │ ├── 011.phtml │ ├── 012.php3t │ ├── 012.phtml │ ├── 013.php3t │ ├── 013.phtml │ ├── 014.php3t │ ├── 014.phtml │ ├── 015.php3t │ ├── 015.phtml │ ├── 016.php3t │ └── 016.phtml ├── basic │ ├── 001.php3t │ ├── 001.phtml │ ├── 002.php3t │ ├── 002.phtml │ ├── 003.php3t │ ├── 003.phtml │ ├── 004.php3t │ ├── 004.phtml │ ├── 005.php3t │ ├── 005.phtml │ ├── 006.php3t │ ├── 006.phtml │ ├── 007.php3t │ ├── 007.phtml │ ├── 008.php3t │ ├── 008.phtml │ ├── 009.php3t │ ├── 009.phtml │ ├── 010.php3t │ ├── 010.phtml │ ├── 011.php3t │ └── 011.phtml ├── classes │ ├── class_example.php3t │ ├── class_example.phtml │ ├── inheritance.php3t │ └── inheritance.phtml ├── func │ ├── 001.php3t │ ├── 001.phtml │ ├── 002.php3t │ ├── 002.phtml │ ├── 003.php3t │ ├── 003.phtml │ ├── 004.php3t │ ├── 004.phtml │ ├── 005.php3t │ ├── 005.phtml │ ├── 006.php3t │ └── 006.phtml ├── math │ ├── 001.php3t │ └── 001.phtml ├── strings │ ├── 001.php3t │ ├── 001.phtml │ ├── 002.php3t │ ├── 002.phtml │ ├── 003.php3t │ └── 003.phtml └── testphp.pl ├── request_info.c ├── request_info.h ├── safe_mode.c ├── safe_mode.h ├── setup ├── snmp.m4 ├── snprintf.c ├── snprintf.h ├── stack.c ├── stack.h ├── stamp-h.in ├── test ├── README ├── ary │ ├── 001.php3t │ ├── 002.php3t │ ├── 003.php3t │ ├── 004.php3t │ ├── 005.php3t │ ├── 006.php3t │ ├── 007.php3t │ ├── 008.php3t │ ├── 009.php3t │ ├── 010.php3t │ ├── 011.php3t │ ├── 012.php3t │ ├── 013.php3t │ ├── 014.php3t │ ├── 015.php3t │ └── 016.php3t ├── basic │ ├── 001.php3t │ ├── 002.php3t │ ├── 003.php3t │ ├── 004.php3t │ ├── 005.php3t │ ├── 006.php3t │ ├── 007.php3t │ ├── 008.php3t │ ├── 009.php3t │ ├── 010.php3t │ └── 011.php3t ├── classes │ ├── class_example.php3t │ └── inheritance.php3t ├── dbm │ ├── 001.php3t │ ├── 002.php3t │ ├── 003.php3t │ ├── 004.php3t │ ├── 005.php3t │ └── 006.php3t ├── file │ └── 001.php3t ├── func │ ├── 001.php3t │ ├── 002.php3t │ ├── 003.php3t │ ├── 004.php3t │ └── 005.php3t ├── general_functions │ └── 001.php3t ├── interbase │ ├── 001.php3t │ ├── 002.php3t │ ├── 003.php3t │ ├── 004.php3t │ ├── 005.php3t │ ├── 006.php3t │ ├── extension │ └── interbase.inc ├── lang │ ├── 001.php3t │ ├── 002.php3t │ ├── 003.php3t │ ├── 004.php3t │ ├── 005.php3t │ ├── 006.php3t │ ├── 007.php3t │ ├── 008.php3t │ ├── 009.php3t │ ├── 010.php3t │ ├── 011.php3t │ ├── 012.php3t │ ├── 013.php3t │ ├── 014.php3t │ ├── 015.inc │ ├── 015.php3t │ ├── 016.inc │ ├── 016.php3t │ ├── 017.php3t │ ├── 018.php3t │ ├── 019.php3t │ ├── 020.php3t │ ├── 021.php3t │ ├── 022.php3t │ ├── 023-1.inc │ ├── 023-2.inc │ ├── 023.php3t │ ├── 024.php3t │ ├── 025.php3t │ ├── 026.php3t │ ├── 027.php3t │ └── 028.php3t ├── math │ └── 001.php3t ├── reg │ ├── 001.php3t │ ├── 002.php3t │ ├── 003.php3t │ ├── 004.php3t │ ├── 005.php3t │ ├── 006.php3t │ ├── 007.php3t │ ├── 008.php3t │ ├── 009.php3t │ ├── 010.php3t │ ├── 011.php3t │ ├── 012.php3t │ ├── 013.php3t │ ├── 014.php3t │ ├── 015.php3t │ └── 016.php3t ├── strings │ ├── 001.php3t │ ├── 002.php3t │ └── 003.php3t ├── template ├── testall ├── testmenu ├── testphp └── testphp.awk ├── tests ├── bench.phtml ├── cpdf.php3 ├── crypt.phtml ├── crypt2.phtml ├── db.phtml ├── dba.php ├── dbase.phtml ├── display.php3 ├── filestat.phtml ├── fortest ├── globaltest ├── globaltest.phtml ├── hyperwave.php3 ├── implode-explode.phtml ├── informix.php3 ├── informix_blb.php3 ├── informix_blob.php3 ├── informix_proc.php3 ├── informix_ser.php3 ├── library.phtml ├── link.phtml ├── log.phtml ├── mcrypt.php ├── microtime.phtml ├── msql.php3 ├── mysql.php3 ├── odbc-t1.php3 ├── odbc-t2.php3 ├── odbc-t3.php3 ├── odbc-t4.php3 ├── odbc-t5.php3 ├── pack.phtml ├── pageinfo.phtml ├── pdf_clock.php3 ├── pdf_hello.php3 ├── sem.php ├── sock_io.php3 ├── str_replace.php3 ├── syslog.phtml └── zlib.php3 ├── tls.c ├── tls.h ├── token_cache.c ├── token_cache.h ├── variables.c ├── variables.h ├── win32 ├── apache.dsp ├── calendar.dsp ├── crypt.dsp ├── db2.dsp ├── dbase.dsp ├── dbm.dsp ├── filepro.dsp ├── ftp.dsp ├── gd.dsp ├── grp.h ├── hyperwave.dsp ├── imap4.dsp ├── imap_sendmail.c ├── imap_sendmail.h ├── interbase.dsp ├── ldap.dsp ├── msql.dsp ├── msql1.dsp ├── mssql.dsp ├── mysql.dsp ├── oci73.dsp ├── oci80.dsp ├── param.h ├── pcre.dsp ├── pdflib.dsp ├── php3.dsp ├── php_custom_build.dsp ├── pwd.c ├── pwd.h ├── readdir.c ├── readdir.h ├── sendmail.c ├── sendmail.h ├── signal.h ├── snmp.dsp ├── solid23.dsp ├── syslog.h ├── time.c ├── time.h ├── unistd.h ├── wfile.c ├── wfile.h ├── winutil.c ├── winutil.h ├── wsyslog.c ├── xml.dsp └── zlib.dsp └── win95nt.h /BUGS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/BUGS -------------------------------------------------------------------------------- /CHANGES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/CHANGES -------------------------------------------------------------------------------- /CODING_STANDARDS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/CODING_STANDARDS -------------------------------------------------------------------------------- /COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/COPYING -------------------------------------------------------------------------------- /CREDITS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/CREDITS -------------------------------------------------------------------------------- /ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/ChangeLog -------------------------------------------------------------------------------- /INSTALL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/INSTALL -------------------------------------------------------------------------------- /INSTALL.DSO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/INSTALL.DSO -------------------------------------------------------------------------------- /INSTALL.REDHAT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/INSTALL.REDHAT -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/Makefile.in -------------------------------------------------------------------------------- /README.QNX: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/README.QNX -------------------------------------------------------------------------------- /README.WIN32: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/README.WIN32 -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/README.md -------------------------------------------------------------------------------- /README.t1lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/README.t1lib -------------------------------------------------------------------------------- /acconfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/acconfig.h -------------------------------------------------------------------------------- /aclocal.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/aclocal.m4 -------------------------------------------------------------------------------- /alloc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/alloc.c -------------------------------------------------------------------------------- /alloca.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/alloca.c -------------------------------------------------------------------------------- /apMakefile.libdir: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/apMakefile.libdir -------------------------------------------------------------------------------- /apMakefile.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/apMakefile.tmpl -------------------------------------------------------------------------------- /apidoc.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/apidoc.txt -------------------------------------------------------------------------------- /benchmarks/bench2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/benchmarks/bench2 -------------------------------------------------------------------------------- /benchmarks/bench3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/benchmarks/bench3 -------------------------------------------------------------------------------- /benchmarks/bench4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/benchmarks/bench4 -------------------------------------------------------------------------------- /benchmarks/bench5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/benchmarks/bench5 -------------------------------------------------------------------------------- /benchmarks/bench6: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/benchmarks/bench6 -------------------------------------------------------------------------------- /benchmarks/bench7: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/benchmarks/bench7 -------------------------------------------------------------------------------- /config.guess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/config.guess -------------------------------------------------------------------------------- /config.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/config.h.in -------------------------------------------------------------------------------- /config.sub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/config.sub -------------------------------------------------------------------------------- /config.w32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/config.w32.h -------------------------------------------------------------------------------- /configuration-parser.y: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/configuration-parser.y -------------------------------------------------------------------------------- /configuration-scanner.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/configuration-scanner.c -------------------------------------------------------------------------------- /configuration-scanner.lex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/configuration-scanner.lex -------------------------------------------------------------------------------- /configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/configure -------------------------------------------------------------------------------- /configure.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/configure.in -------------------------------------------------------------------------------- /constants.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/constants.c -------------------------------------------------------------------------------- /constants.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/constants.h -------------------------------------------------------------------------------- /control_structures.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/control_structures.h -------------------------------------------------------------------------------- /convertor/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/convertor/Makefile -------------------------------------------------------------------------------- /convertor/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/convertor/README -------------------------------------------------------------------------------- /convertor/alloc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/convertor/alloc.c -------------------------------------------------------------------------------- /convertor/convertor.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/convertor/convertor.dsp -------------------------------------------------------------------------------- /convertor/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/convertor/main.c -------------------------------------------------------------------------------- /convertor/main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/convertor/main.h -------------------------------------------------------------------------------- /convertor/makeparser.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/convertor/makeparser.bat -------------------------------------------------------------------------------- /convertor/php_alloc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/convertor/php_alloc.h -------------------------------------------------------------------------------- /convertor/token_cache.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/convertor/token_cache.c -------------------------------------------------------------------------------- /convertor/token_cache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/convertor/token_cache.h -------------------------------------------------------------------------------- /dbase/HISTORY: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/dbase/HISTORY -------------------------------------------------------------------------------- /dbase/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/dbase/Makefile.in -------------------------------------------------------------------------------- /dbase/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/dbase/README -------------------------------------------------------------------------------- /dbase/dbf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/dbase/dbf.h -------------------------------------------------------------------------------- /dbase/dbf_head.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/dbase/dbf_head.c -------------------------------------------------------------------------------- /dbase/dbf_head.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/dbase/dbf_head.h -------------------------------------------------------------------------------- /dbase/dbf_misc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/dbase/dbf_misc.c -------------------------------------------------------------------------------- /dbase/dbf_misc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/dbase/dbf_misc.h -------------------------------------------------------------------------------- /dbase/dbf_ndx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/dbase/dbf_ndx.c -------------------------------------------------------------------------------- /dbase/dbf_ndx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/dbase/dbf_ndx.h -------------------------------------------------------------------------------- /dbase/dbf_rec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/dbase/dbf_rec.c -------------------------------------------------------------------------------- /dbase/dbf_rec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/dbase/dbf_rec.h -------------------------------------------------------------------------------- /dbase/dbfadd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/dbase/dbfadd.c -------------------------------------------------------------------------------- /dbase/dbfcr.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/dbase/dbfcr.sh -------------------------------------------------------------------------------- /dbase/dbfcreat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/dbase/dbfcreat.c -------------------------------------------------------------------------------- /dbase/dbfdel.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/dbase/dbfdel.c -------------------------------------------------------------------------------- /dbase/dbfget.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/dbase/dbfget.c -------------------------------------------------------------------------------- /dbase/dbflst.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/dbase/dbflst.c -------------------------------------------------------------------------------- /dbase/dbfndx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/dbase/dbfndx.c -------------------------------------------------------------------------------- /dbase/dbfpack.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/dbase/dbfpack.c -------------------------------------------------------------------------------- /dbase/dbfscan.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/dbase/dbfscan.sh -------------------------------------------------------------------------------- /dbase/dbftst.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/dbase/dbftst.c -------------------------------------------------------------------------------- /dbase/tmpl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/dbase/tmpl.c -------------------------------------------------------------------------------- /debugger.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/debugger.c -------------------------------------------------------------------------------- /dl/Makefile.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/dl/Makefile.tmpl -------------------------------------------------------------------------------- /dl/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/dl/README -------------------------------------------------------------------------------- /dl/calendar/calendar.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/dl/calendar/calendar.c -------------------------------------------------------------------------------- /dl/calendar/dow.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/dl/calendar/dow.c -------------------------------------------------------------------------------- /dl/calendar/easter.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/dl/calendar/easter.c -------------------------------------------------------------------------------- /dl/calendar/french.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/dl/calendar/french.c -------------------------------------------------------------------------------- /dl/calendar/gregor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/dl/calendar/gregor.c -------------------------------------------------------------------------------- /dl/calendar/jewish.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/dl/calendar/jewish.c -------------------------------------------------------------------------------- /dl/calendar/julian.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/dl/calendar/julian.c -------------------------------------------------------------------------------- /dl/calendar/sdncal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/dl/calendar/sdncal.h -------------------------------------------------------------------------------- /dl/crypt/crypt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/dl/crypt/crypt.c -------------------------------------------------------------------------------- /dl/crypt/prelude.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/dl/crypt/prelude.h -------------------------------------------------------------------------------- /dl/crypt/sflcryp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/dl/crypt/sflcryp.c -------------------------------------------------------------------------------- /dl/crypt/sflcryp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/dl/crypt/sflcryp.h -------------------------------------------------------------------------------- /dl/imap/IMAP_IS_NO_LONGER_HERE: -------------------------------------------------------------------------------- 1 | You can now compile imap staticly using configure. 2 | -------------------------------------------------------------------------------- /dl/imap/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/dl/imap/README -------------------------------------------------------------------------------- /dl/informix/ifx.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/dl/informix/ifx.dsp -------------------------------------------------------------------------------- /dl/informix/informix.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/dl/informix/informix.dsp -------------------------------------------------------------------------------- /dl/log/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/dl/log/README -------------------------------------------------------------------------------- /dl/log/log.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/dl/log/log.c -------------------------------------------------------------------------------- /dl/log/log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/dl/log/log.h -------------------------------------------------------------------------------- /dl/log/log_db.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/dl/log/log_db.c -------------------------------------------------------------------------------- /dl/log/log_sql.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/dl/log/log_sql.c -------------------------------------------------------------------------------- /dl/mssql/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/dl/mssql/Makefile -------------------------------------------------------------------------------- /dl/mssql/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/dl/mssql/README -------------------------------------------------------------------------------- /dl/mssql/mssql.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/dl/mssql/mssql.c -------------------------------------------------------------------------------- /dl/mssql/php3_mssql.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/dl/mssql/php3_mssql.h -------------------------------------------------------------------------------- /dl/mssql/sqldb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/dl/mssql/sqldb.h -------------------------------------------------------------------------------- /dl/mssql/sqlfront.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/dl/mssql/sqlfront.h -------------------------------------------------------------------------------- /dl/phpdl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/dl/phpdl.h -------------------------------------------------------------------------------- /dl/setup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/dl/setup -------------------------------------------------------------------------------- /dl/snmp/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/dl/snmp/README -------------------------------------------------------------------------------- /dl/snmp/php3_snmp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/dl/snmp/php3_snmp.h -------------------------------------------------------------------------------- /dl/snmp/snmp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/dl/snmp/snmp.c -------------------------------------------------------------------------------- /dl/snmp/winsnmp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/dl/snmp/winsnmp.c -------------------------------------------------------------------------------- /dl/vmailmgr/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/dl/vmailmgr/Makefile -------------------------------------------------------------------------------- /dl/vmailmgr/docs.php3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/dl/vmailmgr/docs.php3 -------------------------------------------------------------------------------- /dl/vmailmgr/phpvmail.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/dl/vmailmgr/phpvmail.cc -------------------------------------------------------------------------------- /dl/vmailmgr/phpvmail.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/dl/vmailmgr/phpvmail.h -------------------------------------------------------------------------------- /doc/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/doc/README -------------------------------------------------------------------------------- /doc/appendixes.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/doc/appendixes.html -------------------------------------------------------------------------------- /doc/class.dir.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/doc/class.dir.html -------------------------------------------------------------------------------- /doc/class.orbitenum.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/doc/class.orbitenum.html -------------------------------------------------------------------------------- /doc/config-apache.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/doc/config-apache.html -------------------------------------------------------------------------------- /doc/config-cgi.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/doc/config-cgi.html -------------------------------------------------------------------------------- /doc/config-security.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/doc/config-security.html -------------------------------------------------------------------------------- /doc/configuration.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/doc/configuration.html -------------------------------------------------------------------------------- /doc/constants.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/doc/constants.html -------------------------------------------------------------------------------- /doc/copyright.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/doc/copyright.html -------------------------------------------------------------------------------- /doc/debugger.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/doc/debugger.html -------------------------------------------------------------------------------- /doc/expressions.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/doc/expressions.html -------------------------------------------------------------------------------- /doc/feature-cookies.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/doc/feature-cookies.html -------------------------------------------------------------------------------- /doc/feature-images.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/doc/feature-images.html -------------------------------------------------------------------------------- /doc/feature-regexps.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/doc/feature-regexps.html -------------------------------------------------------------------------------- /doc/features.cookies.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/doc/features.cookies.html -------------------------------------------------------------------------------- /doc/features.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/doc/features.html -------------------------------------------------------------------------------- /doc/features.images.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/doc/features.images.html -------------------------------------------------------------------------------- /doc/funcref.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/doc/funcref.html -------------------------------------------------------------------------------- /doc/function.abs.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/doc/function.abs.html -------------------------------------------------------------------------------- /doc/function.acos.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/doc/function.acos.html -------------------------------------------------------------------------------- /doc/function.array.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/doc/function.array.html -------------------------------------------------------------------------------- /doc/function.arsort.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/doc/function.arsort.html -------------------------------------------------------------------------------- /doc/function.asin.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/doc/function.asin.html -------------------------------------------------------------------------------- /doc/function.asort.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/doc/function.asort.html -------------------------------------------------------------------------------- /doc/function.assert.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/doc/function.assert.html -------------------------------------------------------------------------------- /doc/function.atan.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/doc/function.atan.html -------------------------------------------------------------------------------- /doc/function.atan2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/doc/function.atan2.html -------------------------------------------------------------------------------- /doc/function.bcadd.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/doc/function.bcadd.html -------------------------------------------------------------------------------- /doc/function.bccomp.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/doc/function.bccomp.html -------------------------------------------------------------------------------- /doc/function.bcdiv.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/doc/function.bcdiv.html -------------------------------------------------------------------------------- /doc/function.bcmod.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/doc/function.bcmod.html -------------------------------------------------------------------------------- /doc/function.bcmul.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/doc/function.bcmul.html -------------------------------------------------------------------------------- /doc/function.bcpow.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/doc/function.bcpow.html -------------------------------------------------------------------------------- /doc/function.bcscale.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/doc/function.bcscale.html -------------------------------------------------------------------------------- /doc/function.bcsqrt.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/doc/function.bcsqrt.html -------------------------------------------------------------------------------- /doc/function.bcsub.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/doc/function.bcsub.html -------------------------------------------------------------------------------- /doc/function.bin2hex.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/doc/function.bin2hex.html -------------------------------------------------------------------------------- /doc/function.bind.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/doc/function.bind.html -------------------------------------------------------------------------------- /doc/function.bindec.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/doc/function.bindec.html -------------------------------------------------------------------------------- /doc/function.ceil.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/doc/function.ceil.html -------------------------------------------------------------------------------- /doc/function.chdir.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/doc/function.chdir.html -------------------------------------------------------------------------------- /doc/function.chgrp.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/doc/function.chgrp.html -------------------------------------------------------------------------------- /doc/function.chmod.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/doc/function.chmod.html -------------------------------------------------------------------------------- /doc/function.chop.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/doc/function.chop.html -------------------------------------------------------------------------------- /doc/function.chown.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/doc/function.chown.html -------------------------------------------------------------------------------- /doc/function.chr.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/doc/function.chr.html -------------------------------------------------------------------------------- /doc/function.close.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/doc/function.close.html -------------------------------------------------------------------------------- /doc/function.com-get.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/doc/function.com-get.html -------------------------------------------------------------------------------- /doc/function.com-set.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/doc/function.com-set.html -------------------------------------------------------------------------------- /doc/function.compact.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/doc/function.compact.html -------------------------------------------------------------------------------- /doc/function.connect.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/doc/function.connect.html -------------------------------------------------------------------------------- /doc/function.copy.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/doc/function.copy.html -------------------------------------------------------------------------------- /doc/function.cos.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/doc/function.cos.html -------------------------------------------------------------------------------- /doc/function.count.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/doc/function.count.html -------------------------------------------------------------------------------- /doc/function.crc32.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/doc/function.crc32.html -------------------------------------------------------------------------------- /doc/function.crypt.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/doc/function.crypt.html -------------------------------------------------------------------------------- /doc/function.current.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/doc/function.current.html -------------------------------------------------------------------------------- /doc/function.date.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/doc/function.date.html -------------------------------------------------------------------------------- /doc/function.dblist.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/doc/function.dblist.html -------------------------------------------------------------------------------- /doc/function.dbmopen.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/doc/function.dbmopen.html -------------------------------------------------------------------------------- /doc/function.decbin.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/doc/function.decbin.html -------------------------------------------------------------------------------- /doc/function.dechex.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/doc/function.dechex.html -------------------------------------------------------------------------------- /doc/function.decoct.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/doc/function.decoct.html -------------------------------------------------------------------------------- /doc/function.define.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/doc/function.define.html -------------------------------------------------------------------------------- /doc/function.defined.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/doc/function.defined.html -------------------------------------------------------------------------------- /doc/function.deg2rad.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/doc/function.deg2rad.html -------------------------------------------------------------------------------- /doc/function.delete.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/doc/function.delete.html -------------------------------------------------------------------------------- /doc/function.die.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/doc/function.die.html -------------------------------------------------------------------------------- /doc/function.dirname.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/doc/function.dirname.html -------------------------------------------------------------------------------- /doc/function.dl.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/doc/function.dl.html -------------------------------------------------------------------------------- /doc/function.each.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/doc/function.each.html -------------------------------------------------------------------------------- /doc/function.echo.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/doc/function.echo.html -------------------------------------------------------------------------------- /doc/function.empty.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/doc/function.empty.html -------------------------------------------------------------------------------- /doc/function.end.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/doc/function.end.html -------------------------------------------------------------------------------- /doc/function.ereg.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/doc/function.ereg.html -------------------------------------------------------------------------------- /doc/function.eregi.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/doc/function.eregi.html -------------------------------------------------------------------------------- /doc/function.eval.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/doc/function.eval.html -------------------------------------------------------------------------------- /doc/function.exec.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/doc/function.exec.html -------------------------------------------------------------------------------- /doc/function.exit.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/doc/function.exit.html -------------------------------------------------------------------------------- /doc/function.exp.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/doc/function.exp.html -------------------------------------------------------------------------------- /doc/function.explode.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/doc/function.explode.html -------------------------------------------------------------------------------- /doc/function.extract.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/doc/function.extract.html -------------------------------------------------------------------------------- /doc/function.fclose.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/doc/function.fclose.html -------------------------------------------------------------------------------- /doc/function.feof.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/doc/function.feof.html -------------------------------------------------------------------------------- /doc/function.fgetc.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/doc/function.fgetc.html -------------------------------------------------------------------------------- /doc/function.fgetcsv.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/doc/function.fgetcsv.html -------------------------------------------------------------------------------- /doc/function.fgets.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/doc/function.fgets.html -------------------------------------------------------------------------------- /doc/function.fgetss.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/doc/function.fgetss.html -------------------------------------------------------------------------------- /doc/function.file.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/doc/function.file.html -------------------------------------------------------------------------------- /doc/function.filepro.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/doc/function.filepro.html -------------------------------------------------------------------------------- /doc/function.flock.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/doc/function.flock.html -------------------------------------------------------------------------------- /doc/function.floor.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/doc/function.floor.html -------------------------------------------------------------------------------- /doc/function.flush.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/doc/function.flush.html -------------------------------------------------------------------------------- /doc/function.fopen.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/doc/function.fopen.html -------------------------------------------------------------------------------- /doc/function.fputs.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/doc/function.fputs.html -------------------------------------------------------------------------------- /doc/function.fread.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/doc/function.fread.html -------------------------------------------------------------------------------- /doc/function.fscanf.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/doc/function.fscanf.html -------------------------------------------------------------------------------- /doc/function.fseek.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/doc/function.fseek.html -------------------------------------------------------------------------------- /doc/function.fstat.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/doc/function.fstat.html -------------------------------------------------------------------------------- /doc/function.ftell.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/doc/function.ftell.html -------------------------------------------------------------------------------- /doc/function.ftp-get.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/doc/function.ftp-get.html -------------------------------------------------------------------------------- /doc/function.gzeof.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/doc/function.gzeof.html -------------------------------------------------------------------------------- /doc/function.hw-cp.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/doc/function.hw-cp.html -------------------------------------------------------------------------------- /doc/function.hw-mv.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/doc/function.hw-mv.html -------------------------------------------------------------------------------- /doc/function.isset.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/doc/function.isset.html -------------------------------------------------------------------------------- /doc/function.join.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/doc/function.join.html -------------------------------------------------------------------------------- /doc/function.key.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/doc/function.key.html -------------------------------------------------------------------------------- /doc/function.ksort.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/doc/function.ksort.html -------------------------------------------------------------------------------- /doc/function.leak.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/doc/function.leak.html -------------------------------------------------------------------------------- /doc/function.link.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/doc/function.link.html -------------------------------------------------------------------------------- /doc/function.list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/doc/function.list.html -------------------------------------------------------------------------------- /doc/function.log.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/doc/function.log.html -------------------------------------------------------------------------------- /doc/function.log10.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/doc/function.log10.html -------------------------------------------------------------------------------- /doc/function.lstat.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/doc/function.lstat.html -------------------------------------------------------------------------------- /doc/function.ltrim.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/doc/function.ltrim.html -------------------------------------------------------------------------------- /doc/function.mail.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/doc/function.mail.html -------------------------------------------------------------------------------- /doc/function.max.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/doc/function.max.html -------------------------------------------------------------------------------- /doc/function.md5.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/doc/function.md5.html -------------------------------------------------------------------------------- /doc/function.mhash.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/doc/function.mhash.html -------------------------------------------------------------------------------- /doc/function.min.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/doc/function.min.html -------------------------------------------------------------------------------- /doc/function.mkdir.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/doc/function.mkdir.html -------------------------------------------------------------------------------- /doc/function.msql.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/doc/function.msql.html -------------------------------------------------------------------------------- /doc/function.next.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/doc/function.next.html -------------------------------------------------------------------------------- /doc/function.nl2br.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/doc/function.nl2br.html -------------------------------------------------------------------------------- /doc/function.ord.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/doc/function.ord.html -------------------------------------------------------------------------------- /doc/function.pack.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/doc/function.pack.html -------------------------------------------------------------------------------- /doc/function.pi.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/doc/function.pi.html -------------------------------------------------------------------------------- /doc/function.popen.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/doc/function.popen.html -------------------------------------------------------------------------------- /doc/function.pos.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/doc/function.pos.html -------------------------------------------------------------------------------- /doc/function.pow.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/doc/function.pow.html -------------------------------------------------------------------------------- /doc/function.prev.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/doc/function.prev.html -------------------------------------------------------------------------------- /doc/function.print.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/doc/function.print.html -------------------------------------------------------------------------------- /doc/function.rand.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/doc/function.rand.html -------------------------------------------------------------------------------- /doc/function.range.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/doc/function.range.html -------------------------------------------------------------------------------- /doc/function.reset.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/doc/function.reset.html -------------------------------------------------------------------------------- /doc/function.rmdir.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/doc/function.rmdir.html -------------------------------------------------------------------------------- /doc/function.round.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/doc/function.round.html -------------------------------------------------------------------------------- /doc/function.rsort.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/doc/function.rsort.html -------------------------------------------------------------------------------- /doc/function.rtrim.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/doc/function.rtrim.html -------------------------------------------------------------------------------- /doc/function.sin.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/doc/function.sin.html -------------------------------------------------------------------------------- /doc/function.size.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/doc/function.size.html -------------------------------------------------------------------------------- /doc/function.sleep.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/doc/function.sleep.html -------------------------------------------------------------------------------- /doc/function.sort.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/doc/function.sort.html -------------------------------------------------------------------------------- /doc/function.split.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/doc/function.split.html -------------------------------------------------------------------------------- /doc/function.sqrt.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/doc/function.sqrt.html -------------------------------------------------------------------------------- /doc/function.srand.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/doc/function.srand.html -------------------------------------------------------------------------------- /doc/function.stat.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/doc/function.stat.html -------------------------------------------------------------------------------- /doc/function.strtr.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/doc/function.strtr.html -------------------------------------------------------------------------------- /doc/function.tan.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/doc/function.tan.html -------------------------------------------------------------------------------- /doc/function.time.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/doc/function.time.html -------------------------------------------------------------------------------- /doc/function.touch.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/doc/function.touch.html -------------------------------------------------------------------------------- /doc/function.trim.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/doc/function.trim.html -------------------------------------------------------------------------------- /doc/function.umask.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/doc/function.umask.html -------------------------------------------------------------------------------- /doc/function.unset.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/doc/function.unset.html -------------------------------------------------------------------------------- /doc/function.usort.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/doc/function.usort.html -------------------------------------------------------------------------------- /doc/functions.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/doc/functions.html -------------------------------------------------------------------------------- /doc/install-unix.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/doc/install-unix.html -------------------------------------------------------------------------------- /doc/install.unix.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/doc/install.unix.html -------------------------------------------------------------------------------- /doc/installation.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/doc/installation.html -------------------------------------------------------------------------------- /doc/intro-history.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/doc/intro-history.html -------------------------------------------------------------------------------- /doc/introduction.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/doc/introduction.html -------------------------------------------------------------------------------- /doc/keyword.class.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/doc/keyword.class.html -------------------------------------------------------------------------------- /doc/lang-syntax.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/doc/lang-syntax.html -------------------------------------------------------------------------------- /doc/langref.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/doc/langref.html -------------------------------------------------------------------------------- /doc/language.oop.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/doc/language.oop.html -------------------------------------------------------------------------------- /doc/language.types.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/doc/language.types.html -------------------------------------------------------------------------------- /doc/ln39.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/doc/ln39.html -------------------------------------------------------------------------------- /doc/manual.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/doc/manual.html -------------------------------------------------------------------------------- /doc/manual.php3: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /doc/migration-expr.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/doc/migration-expr.html -------------------------------------------------------------------------------- /doc/migration.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/doc/migration.html -------------------------------------------------------------------------------- /doc/oop.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/doc/oop.html -------------------------------------------------------------------------------- /doc/operators.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/doc/operators.html -------------------------------------------------------------------------------- /doc/phpdevel.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/doc/phpdevel.html -------------------------------------------------------------------------------- /doc/preface.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/doc/preface.html -------------------------------------------------------------------------------- /doc/r5601.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/doc/r5601.html -------------------------------------------------------------------------------- /doc/r5607.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/doc/r5607.html -------------------------------------------------------------------------------- /doc/r5686.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/doc/r5686.html -------------------------------------------------------------------------------- /doc/r5819.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/doc/r5819.html -------------------------------------------------------------------------------- /doc/r6529.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/doc/r6529.html -------------------------------------------------------------------------------- /doc/r6628.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/doc/r6628.html -------------------------------------------------------------------------------- /doc/r6669.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/doc/r6669.html -------------------------------------------------------------------------------- /doc/r6691.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/doc/r6691.html -------------------------------------------------------------------------------- /doc/r6720.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/doc/r6720.html -------------------------------------------------------------------------------- /doc/r6749.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/doc/r6749.html -------------------------------------------------------------------------------- /doc/r6778.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/doc/r6778.html -------------------------------------------------------------------------------- /doc/r6799.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/doc/r6799.html -------------------------------------------------------------------------------- /doc/r6834.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/doc/r6834.html -------------------------------------------------------------------------------- /doc/r6855.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/doc/r6855.html -------------------------------------------------------------------------------- /doc/r6891.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/doc/r6891.html -------------------------------------------------------------------------------- /doc/r6927.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/doc/r6927.html -------------------------------------------------------------------------------- /doc/r6948.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/doc/r6948.html -------------------------------------------------------------------------------- /doc/r6982.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/doc/r6982.html -------------------------------------------------------------------------------- /doc/ref.adabas.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/doc/ref.adabas.html -------------------------------------------------------------------------------- /doc/ref.apache.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/doc/ref.apache.html -------------------------------------------------------------------------------- /doc/ref.array.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/doc/ref.array.html -------------------------------------------------------------------------------- /doc/ref.aspell.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/doc/ref.aspell.html -------------------------------------------------------------------------------- /doc/ref.bc.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/doc/ref.bc.html -------------------------------------------------------------------------------- /doc/ref.calendar.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/doc/ref.calendar.html -------------------------------------------------------------------------------- /doc/ref.ccvs.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/doc/ref.ccvs.html -------------------------------------------------------------------------------- /doc/ref.classobj.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/doc/ref.classobj.html -------------------------------------------------------------------------------- /doc/ref.com.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/doc/ref.com.html -------------------------------------------------------------------------------- /doc/ref.cpdf.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/doc/ref.cpdf.html -------------------------------------------------------------------------------- /doc/ref.curl.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/doc/ref.curl.html -------------------------------------------------------------------------------- /doc/ref.cybercash.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/doc/ref.cybercash.html -------------------------------------------------------------------------------- /doc/ref.datetime.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/doc/ref.datetime.html -------------------------------------------------------------------------------- /doc/ref.dba.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/doc/ref.dba.html -------------------------------------------------------------------------------- /doc/ref.dbase.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/doc/ref.dbase.html -------------------------------------------------------------------------------- /doc/ref.dbm.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/doc/ref.dbm.html -------------------------------------------------------------------------------- /doc/ref.dir.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/doc/ref.dir.html -------------------------------------------------------------------------------- /doc/ref.dl.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/doc/ref.dl.html -------------------------------------------------------------------------------- /doc/ref.domxml.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/doc/ref.domxml.html -------------------------------------------------------------------------------- /doc/ref.errorfunc.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/doc/ref.errorfunc.html -------------------------------------------------------------------------------- /doc/ref.exec.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/doc/ref.exec.html -------------------------------------------------------------------------------- /doc/ref.fdf.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/doc/ref.fdf.html -------------------------------------------------------------------------------- /doc/ref.filepro.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/doc/ref.filepro.html -------------------------------------------------------------------------------- /doc/ref.filesystem.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/doc/ref.filesystem.html -------------------------------------------------------------------------------- /doc/ref.ftp.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/doc/ref.ftp.html -------------------------------------------------------------------------------- /doc/ref.funchand.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/doc/ref.funchand.html -------------------------------------------------------------------------------- /doc/ref.gettext.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/doc/ref.gettext.html -------------------------------------------------------------------------------- /doc/ref.http.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/doc/ref.http.html -------------------------------------------------------------------------------- /doc/ref.hyperwave.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/doc/ref.hyperwave.html -------------------------------------------------------------------------------- /doc/ref.ibase.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/doc/ref.ibase.html -------------------------------------------------------------------------------- /doc/ref.icap.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/doc/ref.icap.html -------------------------------------------------------------------------------- /doc/ref.ifx.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/doc/ref.ifx.html -------------------------------------------------------------------------------- /doc/ref.image.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/doc/ref.image.html -------------------------------------------------------------------------------- /doc/ref.imap.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/doc/ref.imap.html -------------------------------------------------------------------------------- /doc/ref.info.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/doc/ref.info.html -------------------------------------------------------------------------------- /doc/ref.ldap.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/doc/ref.ldap.html -------------------------------------------------------------------------------- /doc/ref.mail.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/doc/ref.mail.html -------------------------------------------------------------------------------- /doc/ref.math.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/doc/ref.math.html -------------------------------------------------------------------------------- /doc/ref.mcal.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/doc/ref.mcal.html -------------------------------------------------------------------------------- /doc/ref.mcrypt.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/doc/ref.mcrypt.html -------------------------------------------------------------------------------- /doc/ref.mhash.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/doc/ref.mhash.html -------------------------------------------------------------------------------- /doc/ref.misc.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/doc/ref.misc.html -------------------------------------------------------------------------------- /doc/ref.msql.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/doc/ref.msql.html -------------------------------------------------------------------------------- /doc/ref.mssql.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/doc/ref.mssql.html -------------------------------------------------------------------------------- /doc/ref.mysql.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/doc/ref.mysql.html -------------------------------------------------------------------------------- /doc/ref.network.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/doc/ref.network.html -------------------------------------------------------------------------------- /doc/ref.nis.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/doc/ref.nis.html -------------------------------------------------------------------------------- /doc/ref.oci8.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/doc/ref.oci8.html -------------------------------------------------------------------------------- /doc/ref.odbc.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/doc/ref.odbc.html -------------------------------------------------------------------------------- /doc/ref.oracle.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/doc/ref.oracle.html -------------------------------------------------------------------------------- /doc/ref.outcontrol.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/doc/ref.outcontrol.html -------------------------------------------------------------------------------- /doc/ref.pcre.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/doc/ref.pcre.html -------------------------------------------------------------------------------- /doc/ref.pdf.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/doc/ref.pdf.html -------------------------------------------------------------------------------- /doc/ref.pfpro.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/doc/ref.pfpro.html -------------------------------------------------------------------------------- /doc/ref.pgsql.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/doc/ref.pgsql.html -------------------------------------------------------------------------------- /doc/ref.posix.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/doc/ref.posix.html -------------------------------------------------------------------------------- /doc/ref.pspell.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/doc/ref.pspell.html -------------------------------------------------------------------------------- /doc/ref.readline.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/doc/ref.readline.html -------------------------------------------------------------------------------- /doc/ref.recode.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/doc/ref.recode.html -------------------------------------------------------------------------------- /doc/ref.regex.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/doc/ref.regex.html -------------------------------------------------------------------------------- /doc/ref.satellite.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/doc/ref.satellite.html -------------------------------------------------------------------------------- /doc/ref.sem.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/doc/ref.sem.html -------------------------------------------------------------------------------- /doc/ref.session.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/doc/ref.session.html -------------------------------------------------------------------------------- /doc/ref.shmop.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/doc/ref.shmop.html -------------------------------------------------------------------------------- /doc/ref.snmp.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/doc/ref.snmp.html -------------------------------------------------------------------------------- /doc/ref.sockets.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/doc/ref.sockets.html -------------------------------------------------------------------------------- /doc/ref.solid.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/doc/ref.solid.html -------------------------------------------------------------------------------- /doc/ref.strings.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/doc/ref.strings.html -------------------------------------------------------------------------------- /doc/ref.swf.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/doc/ref.swf.html -------------------------------------------------------------------------------- /doc/ref.sybase.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/doc/ref.sybase.html -------------------------------------------------------------------------------- /doc/ref.url.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/doc/ref.url.html -------------------------------------------------------------------------------- /doc/ref.var.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/doc/ref.var.html -------------------------------------------------------------------------------- /doc/ref.vmailmgr.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/doc/ref.vmailmgr.html -------------------------------------------------------------------------------- /doc/ref.wddx.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/doc/ref.wddx.html -------------------------------------------------------------------------------- /doc/ref.xml.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/doc/ref.xml.html -------------------------------------------------------------------------------- /doc/ref.yaz.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/doc/ref.yaz.html -------------------------------------------------------------------------------- /doc/ref.zlib.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/doc/ref.zlib.html -------------------------------------------------------------------------------- /doc/security.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/doc/security.html -------------------------------------------------------------------------------- /doc/types.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/doc/types.html -------------------------------------------------------------------------------- /doc/variables.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/doc/variables.html -------------------------------------------------------------------------------- /doc/x2176.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/doc/x2176.html -------------------------------------------------------------------------------- /examples/README.logging: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/examples/README.logging -------------------------------------------------------------------------------- /examples/album/ins.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/examples/album/ins.sh -------------------------------------------------------------------------------- /examples/date.php3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/examples/date.php3 -------------------------------------------------------------------------------- /examples/dir.php3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/examples/dir.php3 -------------------------------------------------------------------------------- /examples/log-db.php3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/examples/log-db.php3 -------------------------------------------------------------------------------- /examples/log-test.php3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/examples/log-test.php3 -------------------------------------------------------------------------------- /extra/cyberlib/CHANGES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/extra/cyberlib/CHANGES -------------------------------------------------------------------------------- /extra/cyberlib/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/extra/cyberlib/COPYING -------------------------------------------------------------------------------- /extra/cyberlib/INSTALL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/extra/cyberlib/INSTALL -------------------------------------------------------------------------------- /extra/cyberlib/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/extra/cyberlib/README -------------------------------------------------------------------------------- /extra/gd/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/extra/gd/README -------------------------------------------------------------------------------- /extra/gd/bdf2gdfont.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/extra/gd/bdf2gdfont.in -------------------------------------------------------------------------------- /extra/gd/helvO10.bdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/extra/gd/helvO10.bdf -------------------------------------------------------------------------------- /extra/icons/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/extra/icons/README -------------------------------------------------------------------------------- /extra/icons/php2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/extra/icons/php2.gif -------------------------------------------------------------------------------- /extra/icons/php3.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/extra/icons/php3.gif -------------------------------------------------------------------------------- /extra/icons/phpi.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/extra/icons/phpi.gif -------------------------------------------------------------------------------- /extra/icons/phps.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/extra/icons/phps.gif -------------------------------------------------------------------------------- /extra/rgd.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/extra/rgd.zip -------------------------------------------------------------------------------- /footer: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/footer -------------------------------------------------------------------------------- /fopen-wrappers.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/fopen-wrappers.c -------------------------------------------------------------------------------- /fopen-wrappers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/fopen-wrappers.h -------------------------------------------------------------------------------- /funclist.php3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/funclist.php3 -------------------------------------------------------------------------------- /functions/COM.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/functions/COM.c -------------------------------------------------------------------------------- /functions/DList.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/functions/DList.h -------------------------------------------------------------------------------- /functions/adabasd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/functions/adabasd.c -------------------------------------------------------------------------------- /functions/adabasd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/functions/adabasd.h -------------------------------------------------------------------------------- /functions/apache.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/functions/apache.c -------------------------------------------------------------------------------- /functions/aspell.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/functions/aspell.c -------------------------------------------------------------------------------- /functions/base64.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/functions/base64.c -------------------------------------------------------------------------------- /functions/base64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/functions/base64.h -------------------------------------------------------------------------------- /functions/bcmath.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/functions/bcmath.c -------------------------------------------------------------------------------- /functions/browscap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/functions/browscap.c -------------------------------------------------------------------------------- /functions/cpdf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/functions/cpdf.c -------------------------------------------------------------------------------- /functions/crypt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/functions/crypt.c -------------------------------------------------------------------------------- /functions/cyr_convert.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/functions/cyr_convert.c -------------------------------------------------------------------------------- /functions/cyr_convert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/functions/cyr_convert.h -------------------------------------------------------------------------------- /functions/datetime.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/functions/datetime.c -------------------------------------------------------------------------------- /functions/datetime.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/functions/datetime.h -------------------------------------------------------------------------------- /functions/dav.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/functions/dav.c -------------------------------------------------------------------------------- /functions/db.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/functions/db.c -------------------------------------------------------------------------------- /functions/db.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/functions/db.h -------------------------------------------------------------------------------- /functions/dba.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/functions/dba.c -------------------------------------------------------------------------------- /functions/dba_cdb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/functions/dba_cdb.c -------------------------------------------------------------------------------- /functions/dba_db2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/functions/dba_db2.c -------------------------------------------------------------------------------- /functions/dba_dbm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/functions/dba_dbm.c -------------------------------------------------------------------------------- /functions/dba_gdbm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/functions/dba_gdbm.c -------------------------------------------------------------------------------- /functions/dba_ndbm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/functions/dba_ndbm.c -------------------------------------------------------------------------------- /functions/dbase.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/functions/dbase.c -------------------------------------------------------------------------------- /functions/dbase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/functions/dbase.h -------------------------------------------------------------------------------- /functions/debug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/functions/debug.h -------------------------------------------------------------------------------- /functions/dir.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/functions/dir.c -------------------------------------------------------------------------------- /functions/dl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/functions/dl.c -------------------------------------------------------------------------------- /functions/dl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/functions/dl.h -------------------------------------------------------------------------------- /functions/dlist.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/functions/dlist.c -------------------------------------------------------------------------------- /functions/dns.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/functions/dns.c -------------------------------------------------------------------------------- /functions/dns.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/functions/dns.h -------------------------------------------------------------------------------- /functions/exec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/functions/exec.c -------------------------------------------------------------------------------- /functions/exec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/functions/exec.h -------------------------------------------------------------------------------- /functions/fdf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/functions/fdf.c -------------------------------------------------------------------------------- /functions/fhttpd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/functions/fhttpd.c -------------------------------------------------------------------------------- /functions/file.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/functions/file.c -------------------------------------------------------------------------------- /functions/file.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/functions/file.h -------------------------------------------------------------------------------- /functions/filepro.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/functions/filepro.c -------------------------------------------------------------------------------- /functions/filepro.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/functions/filepro.h -------------------------------------------------------------------------------- /functions/filestat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/functions/filestat.c -------------------------------------------------------------------------------- /functions/fsock.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/functions/fsock.c -------------------------------------------------------------------------------- /functions/fsock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/functions/fsock.h -------------------------------------------------------------------------------- /functions/ftp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/functions/ftp.c -------------------------------------------------------------------------------- /functions/ftp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/functions/ftp.h -------------------------------------------------------------------------------- /functions/gd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/functions/gd.c -------------------------------------------------------------------------------- /functions/gdcache.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/functions/gdcache.c -------------------------------------------------------------------------------- /functions/gdcache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/functions/gdcache.h -------------------------------------------------------------------------------- /functions/gdttf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/functions/gdttf.c -------------------------------------------------------------------------------- /functions/gdttf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/functions/gdttf.h -------------------------------------------------------------------------------- /functions/gettext.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/functions/gettext.c -------------------------------------------------------------------------------- /functions/head.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/functions/head.c -------------------------------------------------------------------------------- /functions/head.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/functions/head.h -------------------------------------------------------------------------------- /functions/hg_comm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/functions/hg_comm.c -------------------------------------------------------------------------------- /functions/hg_comm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/functions/hg_comm.h -------------------------------------------------------------------------------- /functions/html.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/functions/html.c -------------------------------------------------------------------------------- /functions/html.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/functions/html.h -------------------------------------------------------------------------------- /functions/hw.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/functions/hw.c -------------------------------------------------------------------------------- /functions/hw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/functions/hw.h -------------------------------------------------------------------------------- /functions/hw_error.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/functions/hw_error.h -------------------------------------------------------------------------------- /functions/ifx.ec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/functions/ifx.ec -------------------------------------------------------------------------------- /functions/image.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/functions/image.c -------------------------------------------------------------------------------- /functions/image.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/functions/image.h -------------------------------------------------------------------------------- /functions/imap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/functions/imap.c -------------------------------------------------------------------------------- /functions/imap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/functions/imap.h -------------------------------------------------------------------------------- /functions/imsp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/functions/imsp.c -------------------------------------------------------------------------------- /functions/imsp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/functions/imsp.h -------------------------------------------------------------------------------- /functions/info.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/functions/info.c -------------------------------------------------------------------------------- /functions/info.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/functions/info.h -------------------------------------------------------------------------------- /functions/interbase.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/functions/interbase.c -------------------------------------------------------------------------------- /functions/iptc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/functions/iptc.c -------------------------------------------------------------------------------- /functions/lcg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/functions/lcg.c -------------------------------------------------------------------------------- /functions/ldap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/functions/ldap.c -------------------------------------------------------------------------------- /functions/levenshtein.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/functions/levenshtein.c -------------------------------------------------------------------------------- /functions/link.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/functions/link.c -------------------------------------------------------------------------------- /functions/magick.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/functions/magick.c -------------------------------------------------------------------------------- /functions/mail.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/functions/mail.c -------------------------------------------------------------------------------- /functions/math.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/functions/math.c -------------------------------------------------------------------------------- /functions/mcrypt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/functions/mcrypt.c -------------------------------------------------------------------------------- /functions/md5.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/functions/md5.c -------------------------------------------------------------------------------- /functions/md5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/functions/md5.h -------------------------------------------------------------------------------- /functions/mhash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/functions/mhash.c -------------------------------------------------------------------------------- /functions/microtime.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/functions/microtime.c -------------------------------------------------------------------------------- /functions/microtime.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/functions/microtime.h -------------------------------------------------------------------------------- /functions/mime.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/functions/mime.c -------------------------------------------------------------------------------- /functions/mime.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/functions/mime.h -------------------------------------------------------------------------------- /functions/msql.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/functions/msql.c -------------------------------------------------------------------------------- /functions/mysql.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/functions/mysql.c -------------------------------------------------------------------------------- /functions/number.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/functions/number.c -------------------------------------------------------------------------------- /functions/number.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/functions/number.h -------------------------------------------------------------------------------- /functions/oci8.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/functions/oci8.c -------------------------------------------------------------------------------- /functions/oracle.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/functions/oracle.c -------------------------------------------------------------------------------- /functions/oracle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/functions/oracle.h -------------------------------------------------------------------------------- /functions/oracle_hack.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/functions/oracle_hack.c -------------------------------------------------------------------------------- /functions/pack.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/functions/pack.c -------------------------------------------------------------------------------- /functions/pack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/functions/pack.h -------------------------------------------------------------------------------- /functions/pageinfo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/functions/pageinfo.c -------------------------------------------------------------------------------- /functions/pageinfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/functions/pageinfo.h -------------------------------------------------------------------------------- /functions/parsedate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/functions/parsedate.c -------------------------------------------------------------------------------- /functions/parsedate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/functions/parsedate.h -------------------------------------------------------------------------------- /functions/parsedate.y: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/functions/parsedate.y -------------------------------------------------------------------------------- /functions/pcre.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/functions/pcre.c -------------------------------------------------------------------------------- /functions/pdf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/functions/pdf.c -------------------------------------------------------------------------------- /functions/pgsql.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/functions/pgsql.c -------------------------------------------------------------------------------- /functions/php3_COM.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/functions/php3_COM.h -------------------------------------------------------------------------------- /functions/php3_aspell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/functions/php3_aspell.h -------------------------------------------------------------------------------- /functions/php3_bcmath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/functions/php3_bcmath.h -------------------------------------------------------------------------------- /functions/php3_cdb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/functions/php3_cdb.h -------------------------------------------------------------------------------- /functions/php3_cpdf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/functions/php3_cpdf.h -------------------------------------------------------------------------------- /functions/php3_dav.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/functions/php3_dav.h -------------------------------------------------------------------------------- /functions/php3_db2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/functions/php3_db2.h -------------------------------------------------------------------------------- /functions/php3_dba.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/functions/php3_dba.h -------------------------------------------------------------------------------- /functions/php3_dbm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/functions/php3_dbm.h -------------------------------------------------------------------------------- /functions/php3_dir.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/functions/php3_dir.h -------------------------------------------------------------------------------- /functions/php3_fdf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/functions/php3_fdf.h -------------------------------------------------------------------------------- /functions/php3_gd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/functions/php3_gd.h -------------------------------------------------------------------------------- /functions/php3_gdbm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/functions/php3_gdbm.h -------------------------------------------------------------------------------- /functions/php3_global.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/functions/php3_global.h -------------------------------------------------------------------------------- /functions/php3_ifx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/functions/php3_ifx.h -------------------------------------------------------------------------------- /functions/php3_iptc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/functions/php3_iptc.h -------------------------------------------------------------------------------- /functions/php3_ldap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/functions/php3_ldap.h -------------------------------------------------------------------------------- /functions/php3_link.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/functions/php3_link.h -------------------------------------------------------------------------------- /functions/php3_magick.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/functions/php3_magick.h -------------------------------------------------------------------------------- /functions/php3_mail.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/functions/php3_mail.h -------------------------------------------------------------------------------- /functions/php3_mcal.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/functions/php3_mcal.c -------------------------------------------------------------------------------- /functions/php3_mcal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/functions/php3_mcal.h -------------------------------------------------------------------------------- /functions/php3_msql.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/functions/php3_msql.h -------------------------------------------------------------------------------- /functions/php3_mysql.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/functions/php3_mysql.h -------------------------------------------------------------------------------- /functions/php3_ndbm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/functions/php3_ndbm.h -------------------------------------------------------------------------------- /functions/php3_oci8.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/functions/php3_oci8.h -------------------------------------------------------------------------------- /functions/php3_pcre.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/functions/php3_pcre.h -------------------------------------------------------------------------------- /functions/php3_pdf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/functions/php3_pdf.h -------------------------------------------------------------------------------- /functions/php3_pgsql.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/functions/php3_pgsql.h -------------------------------------------------------------------------------- /functions/php3_posix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/functions/php3_posix.h -------------------------------------------------------------------------------- /functions/php3_recode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/functions/php3_recode.h -------------------------------------------------------------------------------- /functions/php3_snmp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/functions/php3_snmp.h -------------------------------------------------------------------------------- /functions/php3_solid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/functions/php3_solid.h -------------------------------------------------------------------------------- /functions/php3_string.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/functions/php3_string.h -------------------------------------------------------------------------------- /functions/php3_sybase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/functions/php3_sybase.h -------------------------------------------------------------------------------- /functions/php3_syslog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/functions/php3_syslog.h -------------------------------------------------------------------------------- /functions/php3_var.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/functions/php3_var.h -------------------------------------------------------------------------------- /functions/php3_wddx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/functions/php3_wddx.h -------------------------------------------------------------------------------- /functions/php3_wddx_a.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/functions/php3_wddx_a.h -------------------------------------------------------------------------------- /functions/php3_xml.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/functions/php3_xml.h -------------------------------------------------------------------------------- /functions/php3_yp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/functions/php3_yp.h -------------------------------------------------------------------------------- /functions/php3_zlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/functions/php3_zlib.h -------------------------------------------------------------------------------- /functions/php_ftp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/functions/php_ftp.c -------------------------------------------------------------------------------- /functions/php_ftp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/functions/php_ftp.h -------------------------------------------------------------------------------- /functions/php_lcg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/functions/php_lcg.h -------------------------------------------------------------------------------- /functions/php_mcrypt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/functions/php_mcrypt.h -------------------------------------------------------------------------------- /functions/php_mhash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/functions/php_mhash.h -------------------------------------------------------------------------------- /functions/phpdir.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/functions/phpdir.h -------------------------------------------------------------------------------- /functions/phpmath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/functions/phpmath.h -------------------------------------------------------------------------------- /functions/posix.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/functions/posix.c -------------------------------------------------------------------------------- /functions/post.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/functions/post.c -------------------------------------------------------------------------------- /functions/post.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/functions/post.h -------------------------------------------------------------------------------- /functions/quot_print.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/functions/quot_print.c -------------------------------------------------------------------------------- /functions/quot_print.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/functions/quot_print.h -------------------------------------------------------------------------------- /functions/rand.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/functions/rand.c -------------------------------------------------------------------------------- /functions/recode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/functions/recode.c -------------------------------------------------------------------------------- /functions/reg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/functions/reg.c -------------------------------------------------------------------------------- /functions/reg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/functions/reg.h -------------------------------------------------------------------------------- /functions/rpc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/functions/rpc.c -------------------------------------------------------------------------------- /functions/snmp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/functions/snmp.c -------------------------------------------------------------------------------- /functions/solid.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/functions/solid.c -------------------------------------------------------------------------------- /functions/soundex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/functions/soundex.c -------------------------------------------------------------------------------- /functions/string.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/functions/string.c -------------------------------------------------------------------------------- /functions/sybase-ct.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/functions/sybase-ct.c -------------------------------------------------------------------------------- /functions/sybase.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/functions/sybase.c -------------------------------------------------------------------------------- /functions/syslog.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/functions/syslog.c -------------------------------------------------------------------------------- /functions/sysvsem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/functions/sysvsem.c -------------------------------------------------------------------------------- /functions/sysvshm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/functions/sysvshm.c -------------------------------------------------------------------------------- /functions/type.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/functions/type.c -------------------------------------------------------------------------------- /functions/type.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/functions/type.h -------------------------------------------------------------------------------- /functions/uniqid.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/functions/uniqid.c -------------------------------------------------------------------------------- /functions/uniqid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/functions/uniqid.h -------------------------------------------------------------------------------- /functions/url.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/functions/url.c -------------------------------------------------------------------------------- /functions/url.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/functions/url.h -------------------------------------------------------------------------------- /functions/var.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/functions/var.c -------------------------------------------------------------------------------- /functions/velocis.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/functions/velocis.c -------------------------------------------------------------------------------- /functions/wddx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/functions/wddx.c -------------------------------------------------------------------------------- /functions/wddx_a.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/functions/wddx_a.c -------------------------------------------------------------------------------- /functions/xml.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/functions/xml.c -------------------------------------------------------------------------------- /functions/yp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/functions/yp.c -------------------------------------------------------------------------------- /functions/zlib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/functions/zlib.c -------------------------------------------------------------------------------- /getopt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/getopt.c -------------------------------------------------------------------------------- /header: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/header -------------------------------------------------------------------------------- /highlight.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/highlight.c -------------------------------------------------------------------------------- /highlight.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/highlight.h -------------------------------------------------------------------------------- /install-sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/install-sh -------------------------------------------------------------------------------- /internal_functions.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/internal_functions.c -------------------------------------------------------------------------------- /internal_functions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/internal_functions.h -------------------------------------------------------------------------------- /language-parser.tab.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/language-parser.tab.c -------------------------------------------------------------------------------- /language-parser.tab.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/language-parser.tab.h -------------------------------------------------------------------------------- /language-parser.y: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/language-parser.y -------------------------------------------------------------------------------- /language-scanner.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/language-scanner.c -------------------------------------------------------------------------------- /language-scanner.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/language-scanner.h -------------------------------------------------------------------------------- /language-scanner.lex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/language-scanner.lex -------------------------------------------------------------------------------- /libphp3.module.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/libphp3.module.in -------------------------------------------------------------------------------- /list.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/list.c -------------------------------------------------------------------------------- /ltconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/ltconfig -------------------------------------------------------------------------------- /ltmain.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/ltmain.sh -------------------------------------------------------------------------------- /main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/main.c -------------------------------------------------------------------------------- /main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/main.h -------------------------------------------------------------------------------- /makedist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/makedist -------------------------------------------------------------------------------- /mod_php3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/mod_php3.c -------------------------------------------------------------------------------- /mod_php3.exp: -------------------------------------------------------------------------------- 1 | php3_module 2 | -------------------------------------------------------------------------------- /mod_php3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/mod_php3.h -------------------------------------------------------------------------------- /modules.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/modules.h -------------------------------------------------------------------------------- /operators.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/operators.c -------------------------------------------------------------------------------- /operators.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/operators.h -------------------------------------------------------------------------------- /pcrelib/ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/pcrelib/ChangeLog -------------------------------------------------------------------------------- /pcrelib/LICENCE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/pcrelib/LICENCE -------------------------------------------------------------------------------- /pcrelib/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/pcrelib/Makefile.in -------------------------------------------------------------------------------- /pcrelib/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/pcrelib/README -------------------------------------------------------------------------------- /pcrelib/RunTest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/pcrelib/RunTest -------------------------------------------------------------------------------- /pcrelib/Tech.Notes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/pcrelib/Tech.Notes -------------------------------------------------------------------------------- /pcrelib/chartables.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/pcrelib/chartables.c -------------------------------------------------------------------------------- /pcrelib/dftables: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/pcrelib/dftables -------------------------------------------------------------------------------- /pcrelib/dftables.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/pcrelib/dftables.c -------------------------------------------------------------------------------- /pcrelib/get.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/pcrelib/get.c -------------------------------------------------------------------------------- /pcrelib/internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/pcrelib/internal.h -------------------------------------------------------------------------------- /pcrelib/maketables.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/pcrelib/maketables.c -------------------------------------------------------------------------------- /pcrelib/pcre.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/pcrelib/pcre.3 -------------------------------------------------------------------------------- /pcrelib/pcre.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/pcrelib/pcre.c -------------------------------------------------------------------------------- /pcrelib/pcre.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/pcrelib/pcre.h -------------------------------------------------------------------------------- /pcrelib/pcrelib.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/pcrelib/pcrelib.dsp -------------------------------------------------------------------------------- /pcrelib/pcreposix.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/pcrelib/pcreposix.3 -------------------------------------------------------------------------------- /pcrelib/pcreposix.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/pcrelib/pcreposix.c -------------------------------------------------------------------------------- /pcrelib/pcreposix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/pcrelib/pcreposix.h -------------------------------------------------------------------------------- /pcrelib/pcretest.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/pcrelib/pcretest.c -------------------------------------------------------------------------------- /pcrelib/perltest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/pcrelib/perltest -------------------------------------------------------------------------------- /pcrelib/pgrep.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/pcrelib/pgrep.1 -------------------------------------------------------------------------------- /pcrelib/pgrep.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/pcrelib/pgrep.c -------------------------------------------------------------------------------- /pcrelib/study.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/pcrelib/study.c -------------------------------------------------------------------------------- /pcrelib/testinput1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/pcrelib/testinput1 -------------------------------------------------------------------------------- /pcrelib/testinput2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/pcrelib/testinput2 -------------------------------------------------------------------------------- /pcrelib/testinput3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/pcrelib/testinput3 -------------------------------------------------------------------------------- /pcrelib/testinput4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/pcrelib/testinput4 -------------------------------------------------------------------------------- /pcrelib/testoutput1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/pcrelib/testoutput1 -------------------------------------------------------------------------------- /pcrelib/testoutput2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/pcrelib/testoutput2 -------------------------------------------------------------------------------- /pcrelib/testoutput3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/pcrelib/testoutput3 -------------------------------------------------------------------------------- /pcrelib/testoutput4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/pcrelib/testoutput4 -------------------------------------------------------------------------------- /pcrelib/testtry: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/pcrelib/testtry -------------------------------------------------------------------------------- /php.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/php.h -------------------------------------------------------------------------------- /php.map: -------------------------------------------------------------------------------- 1 | PHP3 { 2 | global: php3_module; 3 | local: *; 4 | }; 5 | -------------------------------------------------------------------------------- /php3.dsw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/php3.dsw -------------------------------------------------------------------------------- /php3.ini-dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/php3.ini-dist -------------------------------------------------------------------------------- /php3_debugger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/php3_debugger.h -------------------------------------------------------------------------------- /php3_hash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/php3_hash.c -------------------------------------------------------------------------------- /php3_hash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/php3_hash.h -------------------------------------------------------------------------------- /php3_list.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/php3_list.h -------------------------------------------------------------------------------- /php3_realpath.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/php3_realpath.c -------------------------------------------------------------------------------- /php3_realpath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/php3_realpath.h -------------------------------------------------------------------------------- /php3_sprintf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/php3_sprintf.c -------------------------------------------------------------------------------- /php3_threads.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/php3_threads.c -------------------------------------------------------------------------------- /php3_threads.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/php3_threads.h -------------------------------------------------------------------------------- /php3extra.dsw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/php3extra.dsw -------------------------------------------------------------------------------- /php_alloc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/php_alloc.h -------------------------------------------------------------------------------- /php_compat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/php_compat.c -------------------------------------------------------------------------------- /php_compat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/php_compat.h -------------------------------------------------------------------------------- /php_getopt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/php_getopt.h -------------------------------------------------------------------------------- /php_version.h: -------------------------------------------------------------------------------- 1 | #define PHP_VERSION "3.0.18" 2 | -------------------------------------------------------------------------------- /press-release-3.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/press-release-3.0.txt -------------------------------------------------------------------------------- /regex/COPYRIGHT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/regex/COPYRIGHT -------------------------------------------------------------------------------- /regex/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/regex/Makefile.in -------------------------------------------------------------------------------- /regex/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/regex/README -------------------------------------------------------------------------------- /regex/WHATSNEW: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/regex/WHATSNEW -------------------------------------------------------------------------------- /regex/cclass.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/regex/cclass.h -------------------------------------------------------------------------------- /regex/cname.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/regex/cname.h -------------------------------------------------------------------------------- /regex/debug.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/regex/debug.c -------------------------------------------------------------------------------- /regex/debug.ih: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/regex/debug.ih -------------------------------------------------------------------------------- /regex/engine.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/regex/engine.c -------------------------------------------------------------------------------- /regex/engine.ih: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/regex/engine.ih -------------------------------------------------------------------------------- /regex/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/regex/main.c -------------------------------------------------------------------------------- /regex/main.ih: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/regex/main.ih -------------------------------------------------------------------------------- /regex/mkh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/regex/mkh -------------------------------------------------------------------------------- /regex/regcomp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/regex/regcomp.c -------------------------------------------------------------------------------- /regex/regcomp.ih: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/regex/regcomp.ih -------------------------------------------------------------------------------- /regex/regerror.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/regex/regerror.c -------------------------------------------------------------------------------- /regex/regerror.ih: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/regex/regerror.ih -------------------------------------------------------------------------------- /regex/regex.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/regex/regex.3 -------------------------------------------------------------------------------- /regex/regex.7: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/regex/regex.7 -------------------------------------------------------------------------------- /regex/regex.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/regex/regex.dsp -------------------------------------------------------------------------------- /regex/regex.dsw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/regex/regex.dsw -------------------------------------------------------------------------------- /regex/regex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/regex/regex.h -------------------------------------------------------------------------------- /regex/regex2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/regex/regex2.h -------------------------------------------------------------------------------- /regex/regexec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/regex/regexec.c -------------------------------------------------------------------------------- /regex/regfree.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/regex/regfree.c -------------------------------------------------------------------------------- /regex/split.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/regex/split.c -------------------------------------------------------------------------------- /regex/tests: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/regex/tests -------------------------------------------------------------------------------- /regex/utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/regex/utils.h -------------------------------------------------------------------------------- /regtests/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/regtests/README -------------------------------------------------------------------------------- /regtests/TEST: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/regtests/TEST -------------------------------------------------------------------------------- /regtests/ary/001.php3t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/regtests/ary/001.php3t -------------------------------------------------------------------------------- /regtests/ary/002.php3t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/regtests/ary/002.php3t -------------------------------------------------------------------------------- /regtests/ary/002.phtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/regtests/ary/002.phtml -------------------------------------------------------------------------------- /regtests/ary/003.php3t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/regtests/ary/003.php3t -------------------------------------------------------------------------------- /regtests/ary/003.phtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/regtests/ary/003.phtml -------------------------------------------------------------------------------- /regtests/ary/004.php3t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/regtests/ary/004.php3t -------------------------------------------------------------------------------- /regtests/ary/004.phtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/regtests/ary/004.phtml -------------------------------------------------------------------------------- /regtests/ary/005.php3t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/regtests/ary/005.php3t -------------------------------------------------------------------------------- /regtests/ary/005.phtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/regtests/ary/005.phtml -------------------------------------------------------------------------------- /regtests/ary/006.php3t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/regtests/ary/006.php3t -------------------------------------------------------------------------------- /regtests/ary/006.phtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/regtests/ary/006.phtml -------------------------------------------------------------------------------- /regtests/ary/007.php3t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/regtests/ary/007.php3t -------------------------------------------------------------------------------- /regtests/ary/007.phtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/regtests/ary/007.phtml -------------------------------------------------------------------------------- /regtests/ary/008.php3t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/regtests/ary/008.php3t -------------------------------------------------------------------------------- /regtests/ary/008.phtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/regtests/ary/008.phtml -------------------------------------------------------------------------------- /regtests/ary/009.php3t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/regtests/ary/009.php3t -------------------------------------------------------------------------------- /regtests/ary/009.phtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/regtests/ary/009.phtml -------------------------------------------------------------------------------- /regtests/ary/010.php3t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/regtests/ary/010.php3t -------------------------------------------------------------------------------- /regtests/ary/010.phtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/regtests/ary/010.phtml -------------------------------------------------------------------------------- /regtests/ary/011.php3t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/regtests/ary/011.php3t -------------------------------------------------------------------------------- /regtests/ary/011.phtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/regtests/ary/011.phtml -------------------------------------------------------------------------------- /regtests/ary/012.php3t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/regtests/ary/012.php3t -------------------------------------------------------------------------------- /regtests/ary/012.phtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/regtests/ary/012.phtml -------------------------------------------------------------------------------- /regtests/ary/013.php3t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/regtests/ary/013.php3t -------------------------------------------------------------------------------- /regtests/ary/013.phtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/regtests/ary/013.phtml -------------------------------------------------------------------------------- /regtests/ary/014.php3t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/regtests/ary/014.php3t -------------------------------------------------------------------------------- /regtests/ary/014.phtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/regtests/ary/014.phtml -------------------------------------------------------------------------------- /regtests/ary/015.php3t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/regtests/ary/015.php3t -------------------------------------------------------------------------------- /regtests/ary/015.phtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/regtests/ary/015.phtml -------------------------------------------------------------------------------- /regtests/ary/016.php3t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/regtests/ary/016.php3t -------------------------------------------------------------------------------- /regtests/ary/016.phtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/regtests/ary/016.phtml -------------------------------------------------------------------------------- /regtests/basic/001.phtml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /regtests/basic/002.phtml: -------------------------------------------------------------------------------- 1 | 3 | -------------------------------------------------------------------------------- /regtests/basic/003.phtml: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /regtests/basic/004.phtml: -------------------------------------------------------------------------------- 1 | 4 | 5 | -------------------------------------------------------------------------------- /regtests/basic/005.phtml: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /regtests/func/001.php3t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/regtests/func/001.php3t -------------------------------------------------------------------------------- /regtests/func/001.phtml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /regtests/func/002.php3t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/regtests/func/002.php3t -------------------------------------------------------------------------------- /regtests/func/002.phtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/regtests/func/002.phtml -------------------------------------------------------------------------------- /regtests/func/003.php3t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/regtests/func/003.php3t -------------------------------------------------------------------------------- /regtests/func/003.phtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/regtests/func/003.phtml -------------------------------------------------------------------------------- /regtests/func/004.php3t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/regtests/func/004.php3t -------------------------------------------------------------------------------- /regtests/func/004.phtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/regtests/func/004.phtml -------------------------------------------------------------------------------- /regtests/func/005.php3t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/regtests/func/005.php3t -------------------------------------------------------------------------------- /regtests/func/005.phtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/regtests/func/005.phtml -------------------------------------------------------------------------------- /regtests/func/006.php3t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/regtests/func/006.php3t -------------------------------------------------------------------------------- /regtests/func/006.phtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/regtests/func/006.phtml -------------------------------------------------------------------------------- /regtests/math/001.php3t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/regtests/math/001.php3t -------------------------------------------------------------------------------- /regtests/math/001.phtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/regtests/math/001.phtml -------------------------------------------------------------------------------- /regtests/testphp.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/regtests/testphp.pl -------------------------------------------------------------------------------- /request_info.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/request_info.c -------------------------------------------------------------------------------- /request_info.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/request_info.h -------------------------------------------------------------------------------- /safe_mode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/safe_mode.c -------------------------------------------------------------------------------- /safe_mode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/safe_mode.h -------------------------------------------------------------------------------- /setup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/setup -------------------------------------------------------------------------------- /snmp.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/snmp.m4 -------------------------------------------------------------------------------- /snprintf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/snprintf.c -------------------------------------------------------------------------------- /snprintf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/snprintf.h -------------------------------------------------------------------------------- /stack.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/stack.c -------------------------------------------------------------------------------- /stack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/stack.h -------------------------------------------------------------------------------- /stamp-h.in: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/test/README -------------------------------------------------------------------------------- /test/ary/001.php3t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/test/ary/001.php3t -------------------------------------------------------------------------------- /test/ary/002.php3t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/test/ary/002.php3t -------------------------------------------------------------------------------- /test/ary/003.php3t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/test/ary/003.php3t -------------------------------------------------------------------------------- /test/ary/004.php3t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/test/ary/004.php3t -------------------------------------------------------------------------------- /test/ary/005.php3t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/test/ary/005.php3t -------------------------------------------------------------------------------- /test/ary/006.php3t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/test/ary/006.php3t -------------------------------------------------------------------------------- /test/ary/007.php3t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/test/ary/007.php3t -------------------------------------------------------------------------------- /test/ary/008.php3t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/test/ary/008.php3t -------------------------------------------------------------------------------- /test/ary/009.php3t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/test/ary/009.php3t -------------------------------------------------------------------------------- /test/ary/010.php3t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/test/ary/010.php3t -------------------------------------------------------------------------------- /test/ary/011.php3t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/test/ary/011.php3t -------------------------------------------------------------------------------- /test/ary/012.php3t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/test/ary/012.php3t -------------------------------------------------------------------------------- /test/ary/013.php3t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/test/ary/013.php3t -------------------------------------------------------------------------------- /test/ary/014.php3t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/test/ary/014.php3t -------------------------------------------------------------------------------- /test/ary/015.php3t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/test/ary/015.php3t -------------------------------------------------------------------------------- /test/ary/016.php3t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/test/ary/016.php3t -------------------------------------------------------------------------------- /test/basic/001.php3t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/test/basic/001.php3t -------------------------------------------------------------------------------- /test/basic/002.php3t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/test/basic/002.php3t -------------------------------------------------------------------------------- /test/basic/003.php3t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/test/basic/003.php3t -------------------------------------------------------------------------------- /test/basic/004.php3t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/test/basic/004.php3t -------------------------------------------------------------------------------- /test/basic/005.php3t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/test/basic/005.php3t -------------------------------------------------------------------------------- /test/basic/006.php3t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/test/basic/006.php3t -------------------------------------------------------------------------------- /test/basic/007.php3t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/test/basic/007.php3t -------------------------------------------------------------------------------- /test/basic/008.php3t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/test/basic/008.php3t -------------------------------------------------------------------------------- /test/basic/009.php3t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/test/basic/009.php3t -------------------------------------------------------------------------------- /test/basic/010.php3t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/test/basic/010.php3t -------------------------------------------------------------------------------- /test/basic/011.php3t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/test/basic/011.php3t -------------------------------------------------------------------------------- /test/dbm/001.php3t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/test/dbm/001.php3t -------------------------------------------------------------------------------- /test/dbm/002.php3t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/test/dbm/002.php3t -------------------------------------------------------------------------------- /test/dbm/003.php3t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/test/dbm/003.php3t -------------------------------------------------------------------------------- /test/dbm/004.php3t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/test/dbm/004.php3t -------------------------------------------------------------------------------- /test/dbm/005.php3t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/test/dbm/005.php3t -------------------------------------------------------------------------------- /test/dbm/006.php3t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/test/dbm/006.php3t -------------------------------------------------------------------------------- /test/file/001.php3t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/test/file/001.php3t -------------------------------------------------------------------------------- /test/func/001.php3t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/test/func/001.php3t -------------------------------------------------------------------------------- /test/func/002.php3t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/test/func/002.php3t -------------------------------------------------------------------------------- /test/func/003.php3t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/test/func/003.php3t -------------------------------------------------------------------------------- /test/func/004.php3t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/test/func/004.php3t -------------------------------------------------------------------------------- /test/func/005.php3t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/test/func/005.php3t -------------------------------------------------------------------------------- /test/interbase/extension: -------------------------------------------------------------------------------- 1 | InterBase 2 | -------------------------------------------------------------------------------- /test/lang/001.php3t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/test/lang/001.php3t -------------------------------------------------------------------------------- /test/lang/002.php3t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/test/lang/002.php3t -------------------------------------------------------------------------------- /test/lang/003.php3t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/test/lang/003.php3t -------------------------------------------------------------------------------- /test/lang/004.php3t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/test/lang/004.php3t -------------------------------------------------------------------------------- /test/lang/005.php3t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/test/lang/005.php3t -------------------------------------------------------------------------------- /test/lang/006.php3t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/test/lang/006.php3t -------------------------------------------------------------------------------- /test/lang/007.php3t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/test/lang/007.php3t -------------------------------------------------------------------------------- /test/lang/008.php3t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/test/lang/008.php3t -------------------------------------------------------------------------------- /test/lang/009.php3t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/test/lang/009.php3t -------------------------------------------------------------------------------- /test/lang/010.php3t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/test/lang/010.php3t -------------------------------------------------------------------------------- /test/lang/011.php3t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/test/lang/011.php3t -------------------------------------------------------------------------------- /test/lang/012.php3t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/test/lang/012.php3t -------------------------------------------------------------------------------- /test/lang/013.php3t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/test/lang/013.php3t -------------------------------------------------------------------------------- /test/lang/014.php3t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/test/lang/014.php3t -------------------------------------------------------------------------------- /test/lang/015.inc: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /test/lang/015.php3t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/test/lang/015.php3t -------------------------------------------------------------------------------- /test/lang/016.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/test/lang/016.inc -------------------------------------------------------------------------------- /test/lang/016.php3t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/test/lang/016.php3t -------------------------------------------------------------------------------- /test/lang/017.php3t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/test/lang/017.php3t -------------------------------------------------------------------------------- /test/lang/018.php3t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/test/lang/018.php3t -------------------------------------------------------------------------------- /test/lang/019.php3t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/test/lang/019.php3t -------------------------------------------------------------------------------- /test/lang/020.php3t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/test/lang/020.php3t -------------------------------------------------------------------------------- /test/lang/021.php3t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/test/lang/021.php3t -------------------------------------------------------------------------------- /test/lang/022.php3t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/test/lang/022.php3t -------------------------------------------------------------------------------- /test/lang/023-1.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/test/lang/023-1.inc -------------------------------------------------------------------------------- /test/lang/023-2.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/test/lang/023-2.inc -------------------------------------------------------------------------------- /test/lang/023.php3t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/test/lang/023.php3t -------------------------------------------------------------------------------- /test/lang/024.php3t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/test/lang/024.php3t -------------------------------------------------------------------------------- /test/lang/025.php3t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/test/lang/025.php3t -------------------------------------------------------------------------------- /test/lang/026.php3t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/test/lang/026.php3t -------------------------------------------------------------------------------- /test/lang/027.php3t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/test/lang/027.php3t -------------------------------------------------------------------------------- /test/lang/028.php3t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/test/lang/028.php3t -------------------------------------------------------------------------------- /test/math/001.php3t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/test/math/001.php3t -------------------------------------------------------------------------------- /test/reg/001.php3t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/test/reg/001.php3t -------------------------------------------------------------------------------- /test/reg/002.php3t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/test/reg/002.php3t -------------------------------------------------------------------------------- /test/reg/003.php3t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/test/reg/003.php3t -------------------------------------------------------------------------------- /test/reg/004.php3t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/test/reg/004.php3t -------------------------------------------------------------------------------- /test/reg/005.php3t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/test/reg/005.php3t -------------------------------------------------------------------------------- /test/reg/006.php3t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/test/reg/006.php3t -------------------------------------------------------------------------------- /test/reg/007.php3t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/test/reg/007.php3t -------------------------------------------------------------------------------- /test/reg/008.php3t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/test/reg/008.php3t -------------------------------------------------------------------------------- /test/reg/009.php3t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/test/reg/009.php3t -------------------------------------------------------------------------------- /test/reg/010.php3t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/test/reg/010.php3t -------------------------------------------------------------------------------- /test/reg/011.php3t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/test/reg/011.php3t -------------------------------------------------------------------------------- /test/reg/012.php3t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/test/reg/012.php3t -------------------------------------------------------------------------------- /test/reg/013.php3t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/test/reg/013.php3t -------------------------------------------------------------------------------- /test/reg/014.php3t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/test/reg/014.php3t -------------------------------------------------------------------------------- /test/reg/015.php3t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/test/reg/015.php3t -------------------------------------------------------------------------------- /test/reg/016.php3t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/test/reg/016.php3t -------------------------------------------------------------------------------- /test/strings/001.php3t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/test/strings/001.php3t -------------------------------------------------------------------------------- /test/strings/002.php3t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/test/strings/002.php3t -------------------------------------------------------------------------------- /test/strings/003.php3t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/test/strings/003.php3t -------------------------------------------------------------------------------- /test/template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/test/template -------------------------------------------------------------------------------- /test/testall: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/test/testall -------------------------------------------------------------------------------- /test/testmenu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/test/testmenu -------------------------------------------------------------------------------- /test/testphp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/test/testphp -------------------------------------------------------------------------------- /test/testphp.awk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/test/testphp.awk -------------------------------------------------------------------------------- /tests/bench.phtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/tests/bench.phtml -------------------------------------------------------------------------------- /tests/cpdf.php3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/tests/cpdf.php3 -------------------------------------------------------------------------------- /tests/crypt.phtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/tests/crypt.phtml -------------------------------------------------------------------------------- /tests/crypt2.phtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/tests/crypt2.phtml -------------------------------------------------------------------------------- /tests/db.phtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/tests/db.phtml -------------------------------------------------------------------------------- /tests/dba.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/tests/dba.php -------------------------------------------------------------------------------- /tests/dbase.phtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/tests/dbase.phtml -------------------------------------------------------------------------------- /tests/display.php3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/tests/display.php3 -------------------------------------------------------------------------------- /tests/filestat.phtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/tests/filestat.phtml -------------------------------------------------------------------------------- /tests/fortest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/tests/fortest -------------------------------------------------------------------------------- /tests/globaltest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/tests/globaltest -------------------------------------------------------------------------------- /tests/globaltest.phtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/tests/globaltest.phtml -------------------------------------------------------------------------------- /tests/hyperwave.php3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/tests/hyperwave.php3 -------------------------------------------------------------------------------- /tests/informix.php3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/tests/informix.php3 -------------------------------------------------------------------------------- /tests/informix_blb.php3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/tests/informix_blb.php3 -------------------------------------------------------------------------------- /tests/informix_ser.php3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/tests/informix_ser.php3 -------------------------------------------------------------------------------- /tests/library.phtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/tests/library.phtml -------------------------------------------------------------------------------- /tests/link.phtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/tests/link.phtml -------------------------------------------------------------------------------- /tests/log.phtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/tests/log.phtml -------------------------------------------------------------------------------- /tests/mcrypt.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/tests/mcrypt.php -------------------------------------------------------------------------------- /tests/microtime.phtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/tests/microtime.phtml -------------------------------------------------------------------------------- /tests/msql.php3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/tests/msql.php3 -------------------------------------------------------------------------------- /tests/mysql.php3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/tests/mysql.php3 -------------------------------------------------------------------------------- /tests/odbc-t1.php3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/tests/odbc-t1.php3 -------------------------------------------------------------------------------- /tests/odbc-t2.php3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/tests/odbc-t2.php3 -------------------------------------------------------------------------------- /tests/odbc-t3.php3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/tests/odbc-t3.php3 -------------------------------------------------------------------------------- /tests/odbc-t4.php3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/tests/odbc-t4.php3 -------------------------------------------------------------------------------- /tests/odbc-t5.php3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/tests/odbc-t5.php3 -------------------------------------------------------------------------------- /tests/pack.phtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/tests/pack.phtml -------------------------------------------------------------------------------- /tests/pageinfo.phtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/tests/pageinfo.phtml -------------------------------------------------------------------------------- /tests/pdf_clock.php3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/tests/pdf_clock.php3 -------------------------------------------------------------------------------- /tests/pdf_hello.php3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/tests/pdf_hello.php3 -------------------------------------------------------------------------------- /tests/sem.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/tests/sem.php -------------------------------------------------------------------------------- /tests/sock_io.php3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/tests/sock_io.php3 -------------------------------------------------------------------------------- /tests/str_replace.php3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/tests/str_replace.php3 -------------------------------------------------------------------------------- /tests/syslog.phtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/tests/syslog.phtml -------------------------------------------------------------------------------- /tests/zlib.php3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/tests/zlib.php3 -------------------------------------------------------------------------------- /tls.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/tls.c -------------------------------------------------------------------------------- /tls.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/tls.h -------------------------------------------------------------------------------- /token_cache.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/token_cache.c -------------------------------------------------------------------------------- /token_cache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/token_cache.h -------------------------------------------------------------------------------- /variables.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/variables.c -------------------------------------------------------------------------------- /variables.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/variables.h -------------------------------------------------------------------------------- /win32/apache.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/win32/apache.dsp -------------------------------------------------------------------------------- /win32/calendar.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/win32/calendar.dsp -------------------------------------------------------------------------------- /win32/crypt.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/win32/crypt.dsp -------------------------------------------------------------------------------- /win32/db2.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/win32/db2.dsp -------------------------------------------------------------------------------- /win32/dbase.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/win32/dbase.dsp -------------------------------------------------------------------------------- /win32/dbm.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/win32/dbm.dsp -------------------------------------------------------------------------------- /win32/filepro.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/win32/filepro.dsp -------------------------------------------------------------------------------- /win32/ftp.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/win32/ftp.dsp -------------------------------------------------------------------------------- /win32/gd.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/win32/gd.dsp -------------------------------------------------------------------------------- /win32/grp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/win32/grp.h -------------------------------------------------------------------------------- /win32/hyperwave.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/win32/hyperwave.dsp -------------------------------------------------------------------------------- /win32/imap4.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/win32/imap4.dsp -------------------------------------------------------------------------------- /win32/imap_sendmail.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/win32/imap_sendmail.c -------------------------------------------------------------------------------- /win32/imap_sendmail.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/win32/imap_sendmail.h -------------------------------------------------------------------------------- /win32/interbase.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/win32/interbase.dsp -------------------------------------------------------------------------------- /win32/ldap.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/win32/ldap.dsp -------------------------------------------------------------------------------- /win32/msql.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/win32/msql.dsp -------------------------------------------------------------------------------- /win32/msql1.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/win32/msql1.dsp -------------------------------------------------------------------------------- /win32/mssql.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/win32/mssql.dsp -------------------------------------------------------------------------------- /win32/mysql.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/win32/mysql.dsp -------------------------------------------------------------------------------- /win32/oci73.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/win32/oci73.dsp -------------------------------------------------------------------------------- /win32/oci80.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/win32/oci80.dsp -------------------------------------------------------------------------------- /win32/param.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/win32/param.h -------------------------------------------------------------------------------- /win32/pcre.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/win32/pcre.dsp -------------------------------------------------------------------------------- /win32/pdflib.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/win32/pdflib.dsp -------------------------------------------------------------------------------- /win32/php3.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/win32/php3.dsp -------------------------------------------------------------------------------- /win32/pwd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/win32/pwd.c -------------------------------------------------------------------------------- /win32/pwd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/win32/pwd.h -------------------------------------------------------------------------------- /win32/readdir.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/win32/readdir.c -------------------------------------------------------------------------------- /win32/readdir.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/win32/readdir.h -------------------------------------------------------------------------------- /win32/sendmail.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/win32/sendmail.c -------------------------------------------------------------------------------- /win32/sendmail.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/win32/sendmail.h -------------------------------------------------------------------------------- /win32/signal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/win32/signal.h -------------------------------------------------------------------------------- /win32/snmp.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/win32/snmp.dsp -------------------------------------------------------------------------------- /win32/solid23.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/win32/solid23.dsp -------------------------------------------------------------------------------- /win32/syslog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/win32/syslog.h -------------------------------------------------------------------------------- /win32/time.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/win32/time.c -------------------------------------------------------------------------------- /win32/time.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/win32/time.h -------------------------------------------------------------------------------- /win32/unistd.h: -------------------------------------------------------------------------------- 1 | extern void usleep(unsigned int useconds); 2 | -------------------------------------------------------------------------------- /win32/wfile.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/win32/wfile.c -------------------------------------------------------------------------------- /win32/wfile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/win32/wfile.h -------------------------------------------------------------------------------- /win32/winutil.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/win32/winutil.c -------------------------------------------------------------------------------- /win32/winutil.h: -------------------------------------------------------------------------------- 1 | extern char *php3_win_err(void); 2 | -------------------------------------------------------------------------------- /win32/wsyslog.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/win32/wsyslog.c -------------------------------------------------------------------------------- /win32/xml.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/win32/xml.dsp -------------------------------------------------------------------------------- /win32/zlib.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/win32/zlib.dsp -------------------------------------------------------------------------------- /win95nt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phplang/php-past/HEAD/win95nt.h --------------------------------------------------------------------------------