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

#692 in Parser implementations

Download history 10/week @ 2024-11-30 44/week @ 2024-12-07 17/week @ 2024-12-14 1/week @ 2024-12-21 10/week @ 2024-12-28 7/week @ 2025-01-04 52/week @ 2025-01-11 64/week @ 2025-01-18 15/week @ 2025-01-25 23/week @ 2025-02-01 31/week @ 2025-02-08 59/week @ 2025-02-15 15/week @ 2025-02-22 17/week @ 2025-03-01 21/week @ 2025-03-08 58/week @ 2025-03-15

117 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
~105K SLoC