Searched refs:Spyc (Results 1 – 13 of 13) sorted by relevance
| /plugin/statistics/vendor/mustangostang/spyc/ |
| D | README.md | 1 **Spyc** is a YAML loader/dumper written in pure PHP. Given a YAML document, Spyc will return an ar… 2 you can use however you see fit. Given an array, Spyc will return a string which contains a YAML do… 8 Spyc supports YAML 1.0 specification. 10 ## Using Spyc 12 Using Spyc is trivial: 17 $Data = Spyc::YAMLLoad('spyc.yaml'); 30 If you find Spyc useful, I'm accepting Bitcoin donations (who doesn't these days?) at 193bEkLP7zMrN…
|
| D | Spyc.php | 20 return Spyc::YAMLLoadString($string); 31 return Spyc::YAMLLoad($file); 42 return Spyc::YAMLDump($data, false, false, true); 70 class Spyc { class 159 $Spyc = new Spyc; 161 if (property_exists($Spyc, $key)) { 162 $Spyc->$key = $value; 165 return $Spyc->_load($input); 189 $Spyc = new Spyc; 191 if (property_exists($Spyc, $key)) { [all …]
|
| /plugin/statistics/vendor/mustangostang/spyc/examples/ |
| D | yaml-load.php | 12 $array = Spyc::YAMLLoad('../spyc.yaml'); 20 echo Spyc::YAMLDump($array);
|
| D | yaml-dump.php | 25 $yaml = Spyc::YAMLDump($array,4,60);
|
| /plugin/statistics/vendor/matomo/device-detector/Yaml/ |
| D | Spyc.php | 15 use Spyc as SpycParser; 17 class Spyc implements ParserInterface class
|
| /plugin/statistics/vendor/mustangostang/spyc/php4/ |
| D | spyc.php4 | 20 return Spyc::YAMLLoadString($string); 31 return Spyc::YAMLLoad($file); 57 class Spyc { class 137 $Spyc = new Spyc; 138 return $Spyc->__load($input); 161 $Spyc = new Spyc; 162 return $Spyc->__loadString($input); 186 $spyc = new Spyc;
|
| D | test.php4 | 23 $yaml = Spyc::YAMLLoad('../spyc.yaml');
|
| /plugin/sketchcanvas/phplib/ |
| D | spyc.php | 20 return Spyc::YAMLLoadString($string); 31 return Spyc::YAMLLoad($file); 57 class Spyc { class 139 $Spyc = new Spyc; 140 return $Spyc->__load($input); 163 $Spyc = new Spyc; 164 return $Spyc->__loadString($input); 188 $spyc = new Spyc;
|
| D | image.php | 18 $drawdata = Spyc::YAMLLoad('data/' . $_GET['fname']); 20 $drawdata = Spyc::YAMLLoadString($_POST['drawdata']); 22 $drawdata = Spyc::YAMLLoadString($_GET['drawdata']);
|
| /plugin/statistics/vendor/matomo/device-detector/Parser/ |
| D | AbstractParser.php | 20 use DeviceDetector\Yaml\Spyc; alias 273 return new Spyc();
|
| /plugin/statistics/ |
| D | composer.lock | 107 "Spyc.php"
|
| /plugin/statistics/vendor/matomo/device-detector/ |
| D | DeviceDetector.php | 38 use DeviceDetector\Yaml\Spyc; alias 741 return new Spyc();
|
| D | README.md | 61 // By default Spyc will be used for parsing yaml files. You can also use another yaml parser. 62 // You may need to implement the Yaml Parser facade if you want to use another parser than Spyc or … 152 Device Detector requires a YAML parser. By default `Spyc` parser is used. 158 include_once 'path/to/spyc/Spyc.php';
|