Home
last modified time | relevance | path

Searched refs:Spyc (Results 1 – 13 of 13) sorted by relevance

/plugin/statistics/vendor/mustangostang/spyc/
DREADME.md1 **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…
DSpyc.php20 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/
Dyaml-load.php12 $array = Spyc::YAMLLoad('../spyc.yaml');
20 echo Spyc::YAMLDump($array);
Dyaml-dump.php25 $yaml = Spyc::YAMLDump($array,4,60);
/plugin/statistics/vendor/matomo/device-detector/Yaml/
DSpyc.php15 use Spyc as SpycParser;
17 class Spyc implements ParserInterface class
/plugin/statistics/vendor/mustangostang/spyc/php4/
Dspyc.php420 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;
Dtest.php423 $yaml = Spyc::YAMLLoad('../spyc.yaml');
/plugin/sketchcanvas/phplib/
Dspyc.php20 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;
Dimage.php18 $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/
DAbstractParser.php20 use DeviceDetector\Yaml\Spyc; alias
273 return new Spyc();
/plugin/statistics/
Dcomposer.lock107 "Spyc.php"
/plugin/statistics/vendor/matomo/device-detector/
DDeviceDetector.php38 use DeviceDetector\Yaml\Spyc; alias
741 return new Spyc();
DREADME.md61 // 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';