PHP code example of lengthofrope / create-jsonld-tiny
1. Go to this page and download the library: Download lengthofrope/create-jsonld-tiny library. Choose the download type require. 2. Extract the ZIP file and open the index.php. 3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
lengthofrope / create-jsonld-tiny example snippets
use \LengthOfRope\JSONLD;
use \LengthOfRope\JSONLD\Schema;
$Create = JSONLD\Create::factory()->add(
Schema\BookSchema::factory()
->setAuthor(Schema\PersonSchema::factory()->setName("NAME")->setEmail("[email protected]"))
->setAbout("PHP")
->setName("Superb PHP Book")
->setAlternateName("Book one of three")
)->add(
Schema\OrganizationSchema::factory()
->setAddress(
Schema\PostalAddressSchema::factory()
->setPostalCode("1234 AA")
->setStreetAddress("Somewhere 12")
->setAddressCountry("NL")
->setAddressLocality("Amersfoort")
->setEmail("[email protected]")
->setTelephone("033-1234567")
->setAddressRegion("Utrecht")
)
->setName("Devver Company")
->setDescription("Just another developer")
);
echo $Create->getJSONLDScript();