?iť?

Your IP : 18.224.54.120


Current Path : /home/s/c/g/scgforma/www/wp-content/plugins_desactiver/wordfence/lib/
Upload File :
Current File : /home/s/c/g/scgforma/www/wp-content/plugins_desactiver/wordfence/lib/wfHelperString.php

<?php


class wfHelperString {

	/**
	 * cycle through arguments
	 *
	 * @return mixed
	 */
	public static function cycle() {
		static $counter = 0;
		$args = func_get_args();
		if (empty($args)) {
			$counter = 0;
			return null;
		}
		$return_val = $args[$counter % count($args)];
		$counter++;
		return $return_val;
	}
}