adds implementations of `str_contains` and `str_starts_with` that are used if the functions are not already defined. this should enable 4get to work on both php 7.4 and php 8.* my instance is currently on 7.4.33, and you can see the oracles working here: [calc.php](https://4get.silly.computer/web?s=2%2B4*(2^2)) [encoder.php](https://4get.silly.computer/web?s=md5+hamburger) [numerics.php](https://4get.silly.computer/web?s=0xf0f0f) [time.php](https://4get.silly.computer/web?s=what+is+the+time+right+now+tz%253Aest) Reviewed-on: #13 Co-authored-by: cynic <admin@cynic.moe> Co-committed-by: cynic <admin@cynic.moe>
		
			
				
	
	
		
			36 lines
		
	
	
		
			1.1 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			36 lines
		
	
	
		
			1.1 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
<?php
 | 
						|
abstract class oracle {
 | 
						|
	// some info to spit out alongside the result, so the user knows
 | 
						|
	//  what exactly is giving out the answer. prevents confusion
 | 
						|
	//   about what oracle is answering them for ambiguous queries.
 | 
						|
	public $info = [
 | 
						|
		"name" => "some oracle"
 | 
						|
	];
 | 
						|
	// this function should take in a query string search from $_GET,
 | 
						|
	//  and return a bool determining whether or not it is a question
 | 
						|
	//   intended for the oracle.
 | 
						|
	public function check_query($q) {
 | 
						|
		return false;
 | 
						|
	}
 | 
						|
	// produce the correct answer for the query using the oracle.
 | 
						|
	//  note: if it becomes apparent /during generation/ that the
 | 
						|
	//   query is not in fact for the oracle, returning an empty
 | 
						|
	//    string will kill the oracle pane.
 | 
						|
	// answer format: ["ans1 title" => "ans1", ...]
 | 
						|
	public function generate_response($q) {
 | 
						|
		return "";
 | 
						|
	}
 | 
						|
}
 | 
						|
// backwards compatibility
 | 
						|
if (!function_exists('str_starts_with')) {
 | 
						|
	function str_starts_with($haystack, $needle) {
 | 
						|
		return strncmp($haystack, $needle, strlen($needle)) === 0;;
 | 
						|
	}
 | 
						|
}
 | 
						|
if (!function_exists('str_contains')) {
 | 
						|
	function str_contains($haystack, $needle) {
 | 
						|
		return strpos((string)$haystack, (string)$needle) !== false;
 | 
						|
	}
 | 
						|
}
 | 
						|
 | 
						|
?>
 |