This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/** | |
* Perform a cleanup that spans multiple tables and columns | |
* | |
* @param string $dir The directory to search. This should be | |
* a relative directory starting with "upload/", e.g. | |
* "upload/galleries/". The trailing slash is required. | |
* @param PDO $database The database object to use | |
* @param string[][] $searchArray An array of arrays of exactly |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
""" | |
The goal of this code is to allow submitting data using the | |
naming convention specified in the un-implemented WC3 JSON | |
form proposal. | |
https://www.w3.org/TR/html-json-forms/ | |
This would allow forms to better submit more structured data. | |
This will differ from the W3C proposal in a few important ways: |