22 releases

0.6.2 Nov 5, 2024
0.6.1 Jul 20, 2024
0.6.0 Mar 11, 2024
0.5.1 Feb 23, 2023
0.2.0 Dec 13, 2020

#932 in Parser implementations

Download history 80/week @ 2024-07-29 23/week @ 2024-08-05 24/week @ 2024-08-12 22/week @ 2024-08-26 19/week @ 2024-09-02 13/week @ 2024-09-09 23/week @ 2024-09-16 68/week @ 2024-09-23 32/week @ 2024-09-30 17/week @ 2024-10-07 8/week @ 2024-10-14 3/week @ 2024-10-21 10/week @ 2024-10-28 237/week @ 2024-11-04 12/week @ 2024-11-11

262 downloads per month
Used in nextcloud-config-parser

MIT/Apache

81KB
2.5K SLoC

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(())
}

lib.rs:

Parser for php literals.

Allows parsing of php string, bool, number and array literals.

Usage

Parse into a generic representation

use php_literal_parser::{from_str, Value};

let map = from_str::<Value>(r#"["foo" => true, "nested" => ['foo' => false]]"#)?;

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

Or parse into a specific struct using serde

use php_literal_parser::from_str;
use serde::Deserialize;

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

let target = from_str(r#"["foo" => true, "bars" => [1, 2, 3, 4,]]"#)?;

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

Dependencies

~5.5–7.5MB
~106K SLoC