No description
  • Rust 99.6%
  • Nix 0.4%
Find a file
2022-01-19 15:59:51 +01:00
.github/workflows remove color feature 2022-01-19 15:46:57 +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 Revert "remove parse-display" 2022-01-19 15:59:51 +01:00
tests fix tests 2021-09-09 15:19:31 +02:00
.gitignore init repo 2020-12-01 17:44:52 +01:00
Cargo.toml Revert "remove parse-display" 2022-01-19 15:59:51 +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(())
}