filter_like
filter_like
filter_like(string $table,string $column, string $param)
Parameter | Description |
---|---|
$table | The table which contains the filter by column. |
$column | The filter by column (The column by which you want to filter the report ) |
$param | The filter parameter value. It can only be a string value. |
$report = new ReportOptions(SRE_PUBLIC_REPORT);
$report->select_tables(array("items"))
->select_fields(array("id", "country", "date", "units_in_stock","product_name"))
->filter_like("items", "country", "usa")
->filter_more("items", "date", "2018-01-01",SRE_TEXT);
$engine = new CustomEngine($report);
$report_path = $engine->create_report();