ssnukala/sprinkle-crud5

为 UserFrosting 5.0 的 CRUD 模块。

安装: 6

依赖项: 0

建议者: 0

安全性: 0

星标: 0

关注者: 1

分支: 0

开放问题: 0

类型:userfrosting-sprinkle

v1.0.1-alpha 2024-02-04 21:57 UTC

This package is auto-updated.

Last update: 2024-09-28 17:17:12 UTC


README

为 Userfrosting 5.0 的 CRUD Sprinkle

require 'vendor/autoload.php';

use Symfony\Component\Yaml\Yaml;

$data = [
    'name' => 'Jane Smith',
    'email' => 'jane@example.com',
    'age' => 25,
];

$yaml = Yaml::dump($data);

file_put_contents('data.yaml', $yaml);

echo "Array converted to YAML and saved as 'data.yaml'.";

$data = [
    'name' => 'Michael Johnson',
    'email' => 'michael@example.com',
    'age' => 35,
];

$yaml = yaml_emit($data);

file_put_contents('data.yaml', $yaml);

echo "Array converted to YAML and saved as 'data.yaml'.";