LLMS_Database_Query::set( string $key, mixed $val )

Sets a query variable


Description Description


Parameters Parameters

$key

(string) (Required) variable key

$val

(mixed) (Required) variable value


Top ↑

Return Return

(void)


Top ↑

Source Source

File: includes/abstracts/abstract.llms.database.query.php

	public function set( $key, $val ) {
		$this->query_vars[ $key ] = $val;
	}

Top ↑

Changelog Changelog

Changelog
Version Description
3.8.0 Introduced.


Top ↑

User Contributed Notes User Contributed Notes

You must log in before being able to contribute a note or feedback.