1. Go to this page and download the library: Download markhuot/data 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/ */
markhuot / data example snippets
class Repository {
public int $id;
public string $name;
public string $fullName;
public array $topics;
public bool $private;
}
(new Data(new MyAwesomeObject))->fill($data)->get();
use markhuot\data\attributes\MapFrom;
class Repository {
public int $id;
public string $name;
#[MapFrom('full_name')]
public string $fullName;
}
use markhuot\data\attributes\MapFrom;
class Repository {
public int $id;
public string $name;
#[MapFrom(MapFrom::SNAKE)]
public string $fullName;
}
use markhuot\data\attributes\MapFrom;
#[MapFrom(MapFrom::SNAKE)]
class Repository {
public int $id;
public string $name;
public string $fullName;
}
class Repository {
public int $id;
public string $name;
public string $fullName;
public Owner $owner;
public array $topics;
public bool $private;
}
class Owner {
public int $id;
public string $login;
public string $avatarUrl;
}
class Release {
public int $id;
public string $tagName;
/** @var Asset[] */
public array $assets;
}
class Asset {
public int $id;
public string $name;
public string $url;
}
use Symfony\Component\Validator\Constraints as Assert;
class CreateBlogPostData {
#[Assert\NotNull]
public int $authorId;
#[Assert\NotBlank]
public string $title;
#[Assert\Regex('/[a-z0-9_-]+/')]
public ?string $slug;
}
$data = (new Data(new CreateBlogPostData))->fill($_POST)->validate()->get();
Loading please wait ...
Before you can download the PHP files, the dependencies should be resolved. This can take some minutes. Please be patient.