No description
  • Rust 99.6%
  • Nix 0.4%
Find a file
2023-02-23 13:56:24 +01:00
.github/workflows bumb dependencies 2023-02-23 13:56:24 +01:00
benches fix benches 2021-09-09 16:03:24 +02:00
examples update miette to 3.0 2022-01-19 15:57:44 +01:00
src better end of input error 2022-01-19 16:02:54 +01:00
tests fix tests 2021-09-09 15:19:31 +02:00
.envrc flake 2022-10-06 16:21:04 +02:00
.gitignore flake 2022-10-06 16:21:04 +02:00
Cargo.toml bumb dependencies 2023-02-23 13:56:24 +01:00
flake.lock bumb flake inputs 2023-01-28 17:46:09 +01:00
flake.nix bumb flake inputs 2023-01-28 17:46:09 +01:00
README.md finish serde support 2020-12-14 00:11:32 +01:00

php-literal-parser

parser for php literals.

Usage

Parse into a generic representation

use php_literal_parser::{from_str, Value, ParseError};

fn main() -> Result<(), ParseError> {
    let map = from_str::<Value>(r#"["foo" => true, "nested" => ['foo' => false]]"#)?;

    assert_eq!(map["foo"], true);
    assert_eq!(map["nested"]["foo"], false);
    
    Ok(())
}

Or parse into a specific struct using serde

use php_literal_parser::{from_str, ParseError};
use serde::Deserialize;

#[derive(Debug, Deserialize, PartialEq)]
struct Target {
    foo: bool,
    bars: Vec<u8>
}

fn main() -> Result<(), ParseError> {
    let target = from_str(r#"["foo" => true, "bars" => [1, 2, 3, 4,]]"#)?;

    assert_eq!(Target {
        foo: true,
        bars: vec![1, 2, 3, 4]
    }, target);
    Ok(())
}